﻿:root {

  --steel: #0f5e89;
  --orange: #ff8344;
  --orange-soft: rgba(255, 131, 68, .64);
  --ink: #132236;
  --muted: #667085;
  --line: #e7ecf3;
  --paper: #ffffff;
  --cloud: #f6f8fb;
  --shadow: 0 20px 55px rgba(25, 67, 118, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.drawer-open,
body.modal-open {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  display: grid;
  place-items: center;
  gap: .9rem;
  color: var(--steel);
  font-weight: 900;
}

.loader-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  animation: loaderPulse 1.15s ease-in-out infinite;
}

@keyframes loaderPulse {
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 18px rgba(255, 131, 68, .28));
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  color: var(--steel);
  line-height: 1.08;
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: .75rem clamp(1rem, 3vw, 2.5rem);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: .6rem .8rem;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 42px rgba(14, 34, 58, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 220px;
  color: var(--orange);
  font-weight: 800;
}

.brand img {
  width: 58px !important;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  color: var(--steel);
}

.menu-toggle,
.menu-close,
.cart-button,
.menu-group button {
  border: 0;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .25rem;
}

.main-menu > a,
.menu-group > button,
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 42px;
  padding: .65rem .8rem;
  border-radius: 8px;
  color: var(--steel);
  font-size: .94rem;
  font-weight: 800;
}

.main-menu > a:hover,
.menu-group > button:hover,
.cart-button:hover {
  color: var(--orange);
  background: rgba(255, 131, 68, .1);
}

.menu-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 235px;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
}

.menu-group:hover .submenu,
.menu-group.open .submenu,
.menu-group:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.submenu a {
  padding: .7rem .8rem;
  border-radius: 4px;
  color: var(--steel);
  font-weight: 700;
}

.submenu a:hover {
  background: var(--cloud);
  color: var(--orange);
}

.menu-social-actions {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  margin-left: .35rem;
  padding-left: .55rem;
  border-left: 1px solid rgba(25, 67, 118, .12);
}

.menu-social-actions a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--steel);
  background: rgba(25, 67, 118, .06);
  font-size: .95rem;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.menu-social-actions a:hover {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

.menu-language-actions {
  display: inline-flex;
  align-items: center;
  gap: .18rem;
  margin-left: .25rem;
  padding: .18rem;
  border: 1px solid rgba(25, 67, 118, .14);
  border-radius: 999px;
  background: rgba(25, 67, 118, .04);
}

.menu-language-actions button {
  display: inline-grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--steel);
  background: transparent;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.menu-language-actions button:hover,
.menu-language-actions button.active {
  color: #fff;
  background: var(--steel);
  transform: translateY(-1px);
}

.menu-item-icon {
  display: none;
}

.cart-button {
  position: relative;
  color: #fff;
  background: var(--steel);
}

.cart-button span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: .75rem;
}

.menu-close {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 9rem clamp(1rem, 6vw, 5rem) 4rem;
  color: #fff;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide figcaption {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  max-width: min(420px, calc(100vw - 2rem));
  padding: .72rem 1rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(25, 67, 118, .72);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 18px 38px rgba(6, 22, 43, .22);
  backdrop-filter: blur(12px);
}

.hero-slide figcaption::before {
  content: "\F3E8";
  font-family: "bootstrap-icons";
  color: var(--orange);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 22, 43, .88), rgba(25, 67, 118, .55) 48%, rgba(6, 22, 43, .18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.tour-search {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: .75rem;
  max-width: 760px;
  padding: .75rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tour-search label {
  display: grid;
  gap: .25rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}

.tour-search input,
.lead-form input,
.lead-form select,
.lead-form textarea,
.coupon-form input,
.newsletter input,
.live-chat input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .75rem .9rem;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.tour-search input:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.coupon-form input:focus,
.newsletter input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 131, 68, .16);
}

.btn-primary,
.btn-ghost,
.newsletter button,
.admin-actions button,
.admin-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: .78rem 1.15rem;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 131, 68, .28);
}

.btn-primary:hover,
.newsletter button:hover,
.admin-actions button:hover,
.admin-action-link:hover {
  background: #ec6d2c;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.section,
.promo-band,
.admin-panel,
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6rem clamp(1rem, 3vw, 2rem);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 3rem;
}

.split-section p {
  color: var(--muted);
}

.rounded-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.5rem;
}

.feature-grid span {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--steel);
  font-weight: 800;
}

.feature-grid i {
  color: var(--orange);
}

.section-heading {
  display: grid;
  gap: .65rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.section-heading p {
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1.5rem;
}

.filters button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem 1rem;
  color: var(--steel);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.filters button.active,
.filters button:hover {
  color: #fff;
  background: var(--steel);
}

.tour-grid,
.blog-grid,
.commerce-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.tour-card,
.testimonial-slide,
.blog-grid article,
.checkout-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 67, 118, .08);
  overflow: hidden;
}

.tour-card {
  display: flex;
  flex-direction: column;
}

.tour-photo {
  position: relative;
  overflow: hidden;
}

.tour-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .45s ease;
}

.tour-card:hover .tour-photo img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  border-radius: 999px;
  padding: .35rem .75rem;
  color: #fff;
  background: var(--steel);
  font-size: .8rem;
  font-weight: 900;
}

.tour-body {
  display: grid;
  gap: .9rem;
  padding: 1.1rem;
  flex: 1;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.tour-price {
  color: var(--steel);
  font-size: 1.85rem;
  font-weight: 900;
}

.price-label {
  margin: 0;
  color: var(--steel);
  font-weight: 900;
}

.tour-list {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.tour-list li {
  display: flex;
  gap: .45rem;
}

.tour-list i {
  color: var(--orange);
}

.review-line {
  color: var(--orange);
  font-weight: 900;
}

.ecommerce-section,
.ecommerce-launch {
  max-width: none;
  background: var(--cloud);
}

.ecommerce-section > *,
.ecommerce-launch > * {
  max-width: 1240px;
  margin-inline: auto;
}

.ecommerce-launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ecommerce-launch p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.checkout-panel {
  padding: 1.25rem;
}

.availability-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .45rem;
  margin-top: 1rem;
}

.calendar-day {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--muted);
  background: #f0f3f7;
  font-weight: 800;
}

.calendar-day.available {
  color: #fff;
  background: var(--steel);
}

.calendar-day.selected {
  outline: 3px solid var(--orange-soft);
}

.payment-icons {
  display: grid;
  gap: .75rem;
}

.payment-icons span {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem;
  border-radius: 8px;
  color: var(--steel);
  background: var(--cloud);
  font-weight: 900;
}

.payment-icons i {
  color: var(--orange);
  font-size: 1.35rem;
}

.coupon-form {
  display: grid;
  gap: .65rem;
  margin-top: 1.2rem;
}

.coupon-form div,
.newsletter div {
  display: flex;
  gap: .55rem;
}

.user-booking {
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}

.small-note {
  color: var(--muted);
  font-size: .9rem;
}

.promo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
  background: linear-gradient(135deg, var(--steel), #102943);
  color: #fff;
}

.promo-band > * {
  max-width: 1240px;
}

.promo-band h2,
.promo-band .eyebrow {
  color: #fff;
}

.promo-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, .82);
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 1rem;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  transition: transform .35s ease;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  padding: 1.3rem;
  text-align: center;
}

.testimonial-slide img {
  width: 76px;
  height: 76px;
  margin-bottom: 1rem;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-slide p,
.blog-grid p {
  color: var(--muted);
}

.testimonial-slide span {
  color: var(--orange);
}

.testimonial-dots {
  grid-column: 1 / -1;
  margin-top: 0;
}


.experiences .experience-grid {
  display: grid;
  max-width: 820px;
  grid-template-columns: 1fr;
  gap: .85rem;
}

.experiences .section-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.experience-grid article {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 67, 118, .08);
}

.experience-grid img,
.empty-avatar {
  width: 82px;
  height: 82px;
  border: 3px solid rgba(255, 131, 68, .22);
  border-radius: 999px;
  object-fit: cover;
}

.empty-avatar {
  display: block;
  background: linear-gradient(135deg, rgba(25, 67, 118, .08), rgba(255, 131, 68, .18));
}

.experience-grid h3 {
  margin: 0 0 .18rem;
  color: var(--steel);
  font-size: .96rem;
}

.experience-grid p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.experience-grid span {
  color: var(--orange);
  font-size: .84rem;
  font-weight: 900;
}

.blog-grid article {
  display: grid;
}

.blog-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-grid div {
  padding: 1.1rem;
}

.blog-grid span {
  color: var(--orange);
  font-weight: 900;
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: .35rem;
  border-radius: 8px;
  padding: .65rem 1rem;
  color: #fff;
  background: var(--orange);
  color: var(--steel);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 131, 68, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.blog-button {
  color: #fff !important;
}

.blog-button:hover {
  color: #fff !important;
  background: var(--steel);
  box-shadow: 0 14px 26px rgba(25, 67, 118, .24);
  transform: translateY(-2px);
}

.social-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.4rem;
  color: var(--steel);
  font-weight: 900;
}

.social-share a,
.social-links a,
.floating-tools a,
.floating-tools button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.floating-tools button[data-scroll-top]:hover {
  background: var(--steel);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(25, 67, 118, .28);
}

.distinctive-section {
  padding-top: 4rem;
}

.distinctive-title {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.distinctive-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 1rem;
}

.distinctive-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 67, 118, .08);
  scroll-behavior: smooth;
}

.distinctive-slide {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  background: #fff;
  opacity: 1;
  transform: none;
  transition: transform .25s ease, filter .25s ease;
}

.distinctive-slide:last-child {
  border-right: 0;
}

.distinctive-slide:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.distinctive-slide.active {
  box-shadow: inset 0 -3px 0 rgba(255, 131, 68, .28);
}

.distinctive-slide img {
  max-width: min(220px, 78%);
  max-height: 92px;
  object-fit: contain;
}

.distinctive-slide a {
  display: grid;
  width: 100%;
  place-items: center;
}

.carousel-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--steel);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.carousel-arrow:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .35rem;
  margin-top: .75rem;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: #d9e1ea;
  cursor: pointer;
  opacity: .7;
  transition: width .2s ease, background .2s ease, opacity .2s ease;
}

.carousel-dots button.active {
  width: 18px;
  background: rgba(255, 131, 68, .64);
  opacity: 1;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 2rem;
}

.contact-section p {
  color: var(--muted);
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: .65rem;
  margin: 1rem 0;
}

.contact-section iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 8px;
}

.lead-form {
  display: grid;
  gap: .85rem;
  padding: 1.25rem;
}

.admin-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.admin-panel p {
  color: var(--muted);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  justify-content: flex-end;
  background: rgba(9, 20, 35, .45);
  opacity: 0;
  pointer-events: none;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer > div {
  width: min(460px, 100%);
  height: 100%;
  padding: 1.2rem;
  overflow: auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform .28s ease;
}

.cart-drawer.open > div {
  transform: translateX(0);
}

.itinerary-modal {
  position: fixed;
  inset: 0;
  z-index: 1320;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(9, 20, 35, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.itinerary-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.itinerary-card {
  width: min(820px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform .25s ease;
}

.itinerary-modal.open .itinerary-card {
  transform: translateY(0);
}

.itinerary-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.itinerary-card > :not(img):not(.drawer-close) {
  margin-inline: 1.25rem;
}

.itinerary-card .drawer-close {
  position: sticky;
  top: .75rem;
  z-index: 2;
  float: right;
  margin: .75rem .75rem -3.2rem 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
}

.itinerary-card .eyebrow {
  margin-top: 1.2rem;
}

.itinerary-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.itinerary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.itinerary-meta span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem .85rem;
  border-radius: 8px;
  color: var(--steel);
  background: var(--cloud);
}

.itinerary-meta i,
.itinerary-columns i {
  color: var(--orange);
}

.itinerary-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.itinerary-columns div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.itinerary-columns ul {
  display: grid;
  gap: .5rem;
  margin: .8rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.itinerary-columns li {
  display: flex;
  gap: .45rem;
}

.itinerary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-block: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.itinerary-actions strong {
  color: var(--steel);
  font-size: 2rem;
}

.drawer-close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--steel);
  font-size: 1.25rem;
  cursor: pointer;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item button {
  border: 0;
  color: var(--orange);
  background: transparent;
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  color: var(--steel);
  font-size: 1.25rem;
}

.full {
  width: 100%;
}

.commerce-modal {
  position: fixed;
  inset: 0;
  z-index: 1450;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 24, 42, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.commerce-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.commerce-modal-card {
  width: min(1120px, calc(100vw - 2rem));
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(14px);
  transition: transform .25s ease;
}

.commerce-modal.open .commerce-modal-card {
  transform: translateY(0);
}

.commerce-modal-card .section-heading {
  margin-bottom: 1rem;
}

.commerce-modal-card .drawer-close {
  float: right;
}

.floating-tools {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: grid;
  gap: .6rem;
}

.floating-tools a:last-child {
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

.live-chat {
  position: fixed;
  right: 4.6rem;
  bottom: 1rem;
  z-index: 1200;
  width: min(360px, calc(100vw - 2rem));
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.live-chat.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.live-chat header {
  display: flex;
  justify-content: space-between;
  padding: .9rem 1rem;
  color: #fff;
  background: var(--steel);
}

.live-chat header button {
  border: 0;
  color: #fff;
  background: transparent;
}

.chat-body {
  min-height: 130px;
  padding: 1rem;
  color: var(--muted);
}

.chat-body p {
  margin: .4rem 0;
  padding: .7rem;
  border-radius: 8px;
  background: var(--cloud);
}

.live-chat form {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: .4rem;
  padding: .75rem;
  border-top: 1px solid var(--line);
}

.live-chat form button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .9fr 1fr;
  gap: 2rem;
  max-width: none;
  color: rgba(255, 255, 255, .8);
  background: #0f2238;
}

.site-footer > * {
  max-width: 1240px;
}

.site-footer h3,
.site-footer label {
  display: block;
  margin-bottom: .7rem;
  color: #fff;
  font-weight: 900;
}

.site-footer a {
  display: block;
  margin: .45rem 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-brand p,
.footer-contact p {
  margin: .45rem 0;
  color: rgba(255, 255, 255, .76);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.footer-contact i {
  color: var(--orange);
  margin-top: .18rem;
}

.footer-social h3 {
  margin-top: 0;
  text-align: center;
}

.footer-social {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.footer-social .social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
}

.footer-social .social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  transition: transform .2s ease, background .2s ease;
}

.footer-social .social-links a:hover {
  color: #fff;
  background: var(--steel);
  transform: translateY(-2px);
}

.footer-copy {
  grid-column: 1 / -1;
  width: 100%;
  justify-self: stretch;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 1rem;
  text-align: center;
}

.footer-copy p {
  margin: 0;
}

.newsletter button {
  box-shadow: none;
}

@media (max-width: 1160px) {
  .menu-toggle,
  .menu-close {
    display: grid;
    place-items: center;
  }

  .main-menu {
    position: fixed;
    inset: 0 auto 0 0;
    display: block;
    width: min(420px, 92vw);
    height: 100dvh;
    padding: 1rem;
    overflow: auto;
    background: #fff;
    box-shadow: 18px 0 45px rgba(14, 34, 58, .18);
    transform: translateX(-105%);
    transition: transform .28s ease;
  }

  .main-menu.open {
    transform: translateX(0);
  }

  .menu-close {
    margin-left: auto;
    min-height: 44px;
    font-size: 1.2rem;
  }

  .main-menu > a,
  .menu-group > button,
  .cart-button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    min-height: 52px;
  }

  .menu-group > button .bi-chevron-down {
    margin-left: auto;
  }

  .submenu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .55rem;
    text-align: left;
  }

  .menu-social-actions {
    width: 100%;
    justify-content: center;
    margin: .5rem 0 0;
    padding: .75rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(25, 67, 118, .12);
  }

  .menu-social-actions a {
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }

  .menu-language-actions {
    width: 100%;
    justify-content: center;
    margin: .5rem 0 0;
    padding: .65rem 0 0;
    border: 0;
    border-top: 1px solid rgba(25, 67, 118, .12);
    border-radius: 0;
    background: transparent;
  }

  .menu-language-actions button {
    width: 48px;
    height: 38px;
    border: 1px solid rgba(25, 67, 118, .14);
    background: rgba(25, 67, 118, .04);
    font-size: .82rem;
  }

  #main-menu .menu-item-icon {
    display: inline-grid;
    width: 26px;
    height: 26px;
    min-width: 26px;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 131, 68, .12);
    font-size: .9rem;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .menu-group.open .submenu {
    display: grid;
  }
}

@media (max-width: 900px) {
  .tour-search,
  .split-section,
  .contact-section,
  .site-footer,
  .admin-panel {
    grid-template-columns: 1fr;
  }
  .tour-grid,
  .blog-grid,
  .commerce-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-band,
  .ecommerce-launch,
  .admin-panel {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-slide {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .admin-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: .5rem;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: .9rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 100vh;
    padding: 7rem 1rem 2rem;
  }
  .hero-content {
    display: flex;
    min-height: calc(100vh - 9rem);
    flex-direction: column;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content > p:not(.eyebrow) {
    order: 1;
  }

  .hero-actions {
    order: 2;
  }

  .tour-search {
    order: 3;
    margin-top: auto;
  }
  .tour-grid,
  .blog-grid,
  .commerce-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .testimonial-slide {
    flex-basis: 100%;
  }

  .testimonial-arrow {
    display: none;
  }
.coupon-form div,
  .newsletter div,
  .hero-actions {
    flex-direction: column;
  }

  .live-chat {
    right: 1rem;
    bottom: 4.8rem;
  }


  .hero .hero-actions {
    align-items: flex-start;
    gap: .48rem;
    margin-top: .7rem;
  }

  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-ghost {
    width: auto;
    min-height: 36px;
    padding: .52rem .82rem;
    font-size: .78rem;
    line-height: 1.1;
  }

  .hero .tour-search .btn-primary {
    width: auto;
    min-height: 36px;
    justify-self: flex-start;
    padding: .5rem .82rem;
    font-size: .78rem;
    line-height: 1.1;
  }
  .itinerary-card > img {
    height: 220px;
  }

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

  .itinerary-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .promo-band,
  .admin-panel,
  .site-footer {
    padding-block: 4rem;
  }
}

/* Hybrid live chat */
.live-chat header div {
  display: grid;
  gap: .12rem;
}

.live-chat header small {
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
  font-weight: 600;
}

.chat-body {
  display: grid;
  gap: .75rem;
  max-height: min(68vh, 560px);
  overflow-y: auto;
}

.chat-message.bot {
  color: var(--steel);
  line-height: 1.45;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.chat-quick-replies button {
  border: 1px solid rgba(25, 67, 118, .14);
  border-radius: 999px;
  padding: .48rem .68rem;
  color: var(--steel);
  background: #fff;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.chat-quick-replies button:hover,
.chat-quick-replies button.active {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  transform: translateY(-1px);
}

.live-chat .chat-lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  padding: 0;
  border-top: 0;
}

.chat-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.live-chat .chat-lead-form label {
  display: grid;
  gap: .28rem;
  color: var(--steel);
  font-size: .76rem;
  font-weight: 800;
}

.live-chat .chat-lead-form input,
.live-chat .chat-lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .62rem .68rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: .86rem;
  outline: none;
}

.live-chat .chat-lead-form input:focus,
.live-chat .chat-lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 131, 68, .16);
}

.live-chat .chat-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #25d366;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.live-chat .chat-whatsapp-button:hover {
  transform: translateY(-2px);
  filter: brightness(.96);
}

@media (max-width: 520px) {
  .chat-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer payment methods */
.footer-payments {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.footer-payments h3 {
  margin-top: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
}

.payment-methods span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-height: 40px;
  padding: .55rem .78rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: .88rem;
  font-weight: 900;
}

.payment-methods i:not(.yape-icon) {
  color: var(--orange);
  font-size: 1.18rem;
}

.yape-icon {
  display: inline-grid;
  width: 1.35em;
  height: 1.35em;
  min-width: 1.35em;
  place-items: center;
  border-radius: .36em;
  color: #fff;
  background: #742284;
  font-style: normal;
  font-size: .78em;
  font-weight: 950;
  line-height: 1;
}

.manual-payment-box .yape-icon {
  margin-right: .35rem;
  font-size: .82rem;
  vertical-align: -0.08em;
}

.manual-qr-card img {
  width: min(160px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  padding: .45rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(25, 67, 118, .12);
}

.manual-qr-grid .manual-qr-card {
  align-content: start;
  gap: .45rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.manual-qr-label {
  display: block;
  width: 100%;
  color: var(--steel);
  font-size: .95rem;
  font-weight: 950;
  text-align: center;
}

.manual-qr-image {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(25, 67, 118, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(25, 67, 118, .12);
}

.manual-qr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.payment-methods span:has(img) {
  display: grid;
  min-width: 92px;
  min-height: 48px;
  place-items: center;
  padding: .42rem .7rem;
  background: transparent;
}

.payment-methods img {
  display: block;
  max-width: 86px;
  max-height: 30px;
  margin: auto;
  object-fit: contain;
}


/* Global claim modal */
.claim-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 28px);
  background: rgba(9, 27, 48, .78);
  backdrop-filter: blur(8px);
}

.claim-modal.open {
  display: flex;
}

.claim-modal-open {
  overflow: hidden;
}

.claim-modal-dialog {
  width: min(1080px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .36);
}

.claim-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border-bottom: 1px solid rgba(25, 67, 118, .12);
  background:
    linear-gradient(135deg, rgba(25, 67, 118, .97), rgba(25, 67, 118, .86)),
    #194376;
  color: #fff;
}

.claim-title-group {
  display: grid;
  gap: 7px;
}

.claim-kicker {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #194376;
  background: #fff;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.claim-modal-header .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-modal-header h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.claim-modal-header p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.6;
}

.claim-close {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.claim-close:hover {
  transform: translateY(-2px);
  color: #194376;
  background: #fff;
}

.claim-modal-instructions {
  display: grid;
  gap: 18px;
  margin: clamp(18px, 3vw, 30px) clamp(18px, 4vw, 34px) 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(25, 67, 118, .12);
  border-left: 4px solid #ff8344;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(25, 67, 118, .08);
}

.claim-instruction-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.claim-instruction-heading i {
  display: grid;
  width: 38px;
  height: 38px;
  min-width: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ff8344;
}

.claim-instruction-heading strong {
  display: block;
  color: #194376;
  font-size: 1.04rem;
  font-weight: 950;
}

.claim-instruction-heading p,
.claim-legal-note {
  margin: 5px 0 0;
  color: #59677b;
  line-height: 1.6;
}

.claim-modal-instructions ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: claim-step;
}

.claim-modal-instructions li {
  counter-increment: claim-step;
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fbff;
  color: #59677b;
  line-height: 1.55;
}

.claim-modal-instructions li::before {
  content: counter(claim-step);
  display: grid;
  width: 24px;
  height: 24px;
  min-width: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #194376;
  font-size: .78rem;
  font-weight: 950;
}

.claim-legal-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(25, 67, 118, .18);
  font-size: .94rem;
}

.claim-form {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
}

.claim-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(25, 67, 118, .12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(25, 67, 118, .07);
}

.claim-form legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  color: #194376;
  font-size: 1rem;
  font-weight: 950;
}

.claim-form legend span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ff8344;
  font-size: .86rem;
}

.claim-form-grid,
.claim-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.claim-form label {
  display: grid;
  gap: 8px;
  color: #194376;
  font-size: .92rem;
  font-weight: 850;
}

.claim-form input,
.claim-form select,
.claim-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 67, 118, .16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #1f2d3d;
  background: #f8fbff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.claim-form textarea {
  min-height: 118px;
  resize: vertical;
}

.claim-form input:focus,
.claim-form select:focus,
.claim-form textarea:focus {
  border-color: #ff8344;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 131, 68, .15);
}

.claim-choice,
.claim-acceptance {
  display: flex !important;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
}

.claim-choice {
  padding: 16px;
  border: 1px solid rgba(25, 67, 118, .16);
  background: #f8fbff;
}

.claim-choice input,
.claim-acceptance input {
  width: auto;
  margin-top: 4px;
  accent-color: #ff8344;
}

.claim-choice span,
.claim-acceptance span {
  color: #59677b;
  font-size: .94rem;
  line-height: 1.55;
}

.claim-choice strong {
  display: block;
  margin-bottom: 2px;
  color: #194376;
}

.claim-acceptance {
  padding: 16px 18px;
  border: 1px solid rgba(255, 131, 68, .22);
  background: rgba(255, 131, 68, .09);
}

.claim-code-card {
  padding: 18px;
  border: 1px solid rgba(255, 131, 68, .24);
  border-radius: 10px;
  background: rgba(255, 131, 68, .08);
}

.claim-code-card strong,
.claim-code-card span {
  color: #194376;
}

.claim-code-card span {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 950;
}

.claim-code-card small {
  display: block;
  margin-top: 6px;
  color: #59677b;
  line-height: 1.6;
}

.claim-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.claim-submit,
.claim-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.claim-submit {
  border: 1px solid #ff8344;
  color: #fff;
  background: #ff8344;
  box-shadow: 0 14px 26px rgba(255, 131, 68, .24);
}

.claim-submit:hover {
  transform: translateY(-2px);
  border-color: #194376;
  background: #194376;
}

.claim-secondary {
  border: 1px solid rgba(25, 67, 118, .18);
  color: #194376;
  background: #fff;
}

.claim-secondary:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #194376;
}

.claim-message {
  min-height: 24px;
  margin: 0;
  color: #194376;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .claim-modal {
    align-items: stretch;
    padding: 0;
  }

  .claim-modal-dialog {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .claim-modal-header {
    grid-template-columns: 1fr auto;
  }

  .claim-modal-instructions ol,
  .claim-form-grid,
  .claim-type-grid {
    grid-template-columns: 1fr;
  }

  .claim-actions-row {
    flex-direction: column;
  }

  .claim-submit,
  .claim-secondary {
    width: 100%;
  }
}

/* Simple hybrid chat */
.floating-tools .chat-fast-toggle {
  width: auto;
  min-width: 48px;
  padding: 0 .78rem;
  gap: .42rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 950;
}

.floating-tools .chat-fast-toggle span {
  display: inline-block;
  white-space: nowrap;
}

.live-chat.simple-chat {
  width: min(380px, calc(100vw - 2rem));
  border: 1px solid rgba(25, 67, 118, .12);
  border-radius: 12px;
}

.live-chat.simple-chat header {
  align-items: center;
  padding: .95rem 1rem;
  background: linear-gradient(135deg, #194376, #24588f);
}

.live-chat.simple-chat header strong {
  font-size: 1rem;
}

.live-chat.simple-chat .chat-body {
  gap: .8rem;
  padding: .95rem;
  background: #f8fbff;
}

.live-chat.simple-chat .chat-message.bot {
  margin: 0;
  padding: .85rem;
  border: 1px solid rgba(25, 67, 118, .1);
  border-radius: 10px;
  color: #194376;
  background: #fff;
  font-size: .9rem;
}

.live-chat.simple-chat .chat-quick-replies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.live-chat.simple-chat .chat-quick-replies button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem;
  min-height: 40px;
  padding: .58rem .68rem;
  border-radius: 8px;
  font-size: .78rem;
  text-align: left;
}

.live-chat.simple-chat .chat-quick-replies button i {
  color: #ff8344;
  font-size: .95rem;
}

.live-chat.simple-chat .chat-quick-replies button:hover i,
.live-chat.simple-chat .chat-quick-replies button.active i {
  color: #fff;
}

.chat-selected-card {
  padding: .85rem;
  border: 1px solid rgba(255, 131, 68, .22);
  border-radius: 10px;
  background: rgba(255, 131, 68, .08);
}

.chat-selected-card span {
  display: inline-block;
  margin-bottom: .3rem;
  color: #194376;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chat-selected-card p {
  margin: 0;
  padding: 0;
  color: #59677b;
  background: transparent;
  font-size: .88rem;
  line-height: 1.5;
}

.live-chat.simple-chat .chat-lead-form {
  gap: .55rem;
  padding: .85rem;
  border: 1px solid rgba(25, 67, 118, .1);
  border-radius: 10px;
  background: #fff;
}

.live-chat.simple-chat .chat-form-grid {
  grid-template-columns: 1fr 92px;
}

.chat-helper-note {
  color: #59677b;
  font-size: .74rem;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 520px) {
  .floating-tools .chat-fast-toggle span {
    display: none;
  }

  .live-chat.simple-chat {
    right: 1rem;
    bottom: 5rem;
    width: calc(100vw - 2rem);
  }

  .live-chat.simple-chat .chat-form-grid,
  .live-chat.simple-chat .chat-quick-replies {
    grid-template-columns: 1fr;
  }
}

/* Basic compact chat */
.live-chat.basic-chat {
  width: min(320px, calc(100vw - 2rem));
  border-radius: 10px;
}

.live-chat.basic-chat .chat-body {
  display: grid;
  gap: .7rem;
  padding: .95rem;
  background: #fff;
}

.live-chat.basic-chat .chat-message {
  margin: 0;
  padding: .75rem .85rem;
  border-radius: 10px;
  font-size: .9rem;
  line-height: 1.45;
}

.live-chat.basic-chat .chat-message.user {
  justify-self: end;
  max-width: 88%;
  color: #fff;
  background: #194376;
}

.live-chat.basic-chat .chat-message.bot {
  justify-self: start;
  max-width: 92%;
  color: #194376;
  background: #f8fbff;
  border: 1px solid rgba(25, 67, 118, .12);
}

.live-chat.basic-chat .chat-whatsapp-button {
  width: 100%;
  margin-top: .15rem;
}

@media (max-width: 520px) {
  .live-chat.basic-chat {
    right: 1rem;
    bottom: 5rem;
    width: calc(100vw - 2rem);
  }
}

/* Free text compact chat */
.live-chat.basic-chat .chat-body {
  max-height: 260px;
  overflow-y: auto;
}

.live-chat.basic-chat .chat-free-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: .45rem;
  padding: .75rem;
  border-top: 1px solid rgba(25, 67, 118, .12);
  background: #fff;
}

.live-chat.basic-chat .chat-free-form input {
  width: 100%;
  border: 1px solid rgba(25, 67, 118, .16);
  border-radius: 8px;
  padding: .68rem .78rem;
  color: #1f2d3d;
  background: #f8fbff;
  font: inherit;
  font-size: .9rem;
  outline: none;
}

.live-chat.basic-chat .chat-free-form input:focus {
  border-color: #ff8344;
  box-shadow: 0 0 0 3px rgba(255, 131, 68, .16);
}

.live-chat.basic-chat .chat-free-form button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #ff8344;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.live-chat.basic-chat .chat-free-form button:hover {
  transform: translateY(-1px);
  background: #194376;
}

/* Modal de opiniones de viajeros */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 1rem;
}

.review-modal.open {
  display: grid;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 24, 42, .62);
  backdrop-filter: blur(5px);
}

.review-modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 96vw);
  max-height: 90vh;
  overflow: auto;
  padding: 1.4rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 24, 42, .28);
}

.review-modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--steel);
  background: var(--cloud);
  cursor: pointer;
}

.review-modal-copy {
  padding-right: 2.4rem;
}

.review-modal-copy h2 {
  margin: .25rem 0 .45rem;
  color: var(--steel);
}

.review-modal-copy p {
  color: var(--muted);
}

.review-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

.review-modal-grid article {
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cloud);
  text-align: center;
}

.review-modal-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.review-modal-grid span {
  display: block;
  margin-top: .65rem;
  color: var(--steel);
  font-weight: 900;
}

.review-socials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
}

.review-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .7rem .8rem;
  border-radius: 999px;
  color: #fff;
  background: var(--steel);
  font-size: .9rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.review-socials a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

body.review-modal-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .review-modal-card {
    padding: 1rem;
  }

  .review-modal-grid,
  .review-socials {
    grid-template-columns: 1fr;
  }

  .review-modal-grid img {
    height: 150px;
  }
}

@media (max-width: 900px) {
  .ecommerce-launch + .promo-band {
    margin-top: 1.25rem;
  }
}
.footer-claim-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}

.footer-claim-link img {
  display: block;
  width: 58px !important;
  max-width: 58px !important;
  height: auto !important;
  margin-top: .15rem;
  margin-left: .45rem;
  margin-right: 0;
  border-radius: 4px;
  transition: transform .2s ease, filter .2s ease;
}

.footer-claim-link:hover img {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.per-person {
  display: block;
  margin-top: .18rem;
  color: var(--muted, #64748b);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.15;
}
/* === Hero uniform responsive patch === */
/* Hero de inicio ordenado y uniforme */
.hero {
  min-height: 620px;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 7.5rem clamp(1rem, 5vw, 4.5rem) 4.5rem;
  text-align: center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(6, 22, 43, .62), rgba(25, 67, 118, .46) 50%, rgba(6, 22, 43, .52));
}

.hero-content {
  width: min(960px, 100%);
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.78rem, 4.6vw, 3.35rem);
  line-height: 1.05;
  text-wrap: balance;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto .25rem;
  font-size: clamp(.92rem, 1.6vw, 1.08rem);
}

.tour-search {
  width: min(760px, 100%);
  margin: .15rem auto 0;
  background: rgba(255, 255, 255, .16);
}

.hero-actions {
  justify-content: center;
  margin-top: .25rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  width: auto;
  min-height: 40px;
  padding: .62rem .95rem;
  border-radius: 8px;
  font-size: .84rem;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .hero {
    min-height: 520px;
    padding: 6.5rem 1rem 3rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 430px;
    padding: 5.8rem .9rem 1.7rem;
  }

  .hero-content {
    min-height: 0;
    gap: .7rem;
  }

  .hero h1 {
    max-width: 19rem;
    font-size: clamp(1.32rem, 6.1vw, 1.78rem);
    line-height: 1.08;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 18rem;
    font-size: .82rem;
    line-height: 1.35;
  }

  .tour-search {
    order: initial;
    width: min(100%, 20rem);
    grid-template-columns: 1fr auto;
    gap: .45rem;
    margin-top: .1rem;
    padding: .48rem;
    border-radius: 8px;
  }

  .tour-search label {
    gap: .15rem;
    font-size: .68rem;
    text-align: left;
  }

  .tour-search input {
    min-height: 32px;
    padding: .42rem .55rem;
    font-size: .74rem;
  }

  .hero .tour-search .btn-primary {
    min-height: 32px;
    padding: .42rem .62rem;
    font-size: .72rem;
  }

  .hero .hero-actions {
    justify-content: center;
    align-items: center;
    gap: .45rem;
    margin-top: .1rem;
  }

  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-ghost {
    width: auto;
    min-height: 32px;
    padding: .42rem .62rem;
    font-size: .72rem;
  }

  .hero-slide figcaption {
    right: .9rem;
    bottom: .8rem;
    padding: .35rem .55rem;
    font-size: .68rem;
  }
}
/* === End hero uniform responsive patch === */
/* === Compact search button patch === */
/* Buscar tours igual al boton Ver paquetes */
.hero .tour-search button.btn-primary,
.hero .tour-search .btn-primary[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .45rem !important;
  width: auto !important;
  max-width: none !important;
  min-height: 40px !important;
  padding: .62rem .95rem !important;
  border-radius: 8px !important;
  font-size: .84rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.hero .tour-search button.btn-primary i,
.hero .tour-search .btn-primary[type="submit"] i {
  font-size: .84rem !important;
  line-height: 1 !important;
}

@media (max-width: 640px) {
  .hero .tour-search button.btn-primary,
  .hero .tour-search .btn-primary[type="submit"] {
    width: auto !important;
    max-width: none !important;
    min-height: 32px !important;
    padding: .42rem .62rem !important;
    font-size: .72rem !important;
    gap: .36rem !important;
  }

  .hero .tour-search button.btn-primary i,
  .hero .tour-search .btn-primary[type="submit"] i {
    font-size: .72rem !important;
  }
}
/* === End compact search button patch === */
/* === Home search below hero patch === */
/* Buscador de destinos debajo del hero */
.home-search-wrap {
  position: relative;
  z-index: 6;
  width: min(1180px, 92vw);
  margin: -2.3rem auto 2.6rem;
}

.home-search-wrap .tour-search {
  width: min(860px, 100%);
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: .75rem;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.home-search-wrap .tour-search label {
  display: grid;
  gap: .25rem;
  color: var(--steel);
  font-size: .8rem;
  font-weight: 900;
  text-align: left;
}

.home-search-wrap .tour-search input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.home-search-wrap .tour-search button.btn-primary,
.home-search-wrap .tour-search .btn-primary[type="submit"] {
  align-self: end;
  min-height: 46px;
  padding: .72rem 1rem;
  border-radius: 8px;
  font-size: .84rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .home-search-wrap {
    width: min(92vw, 21rem);
    margin: -1.7rem auto 2rem;
  }

  .home-search-wrap .tour-search {
    grid-template-columns: 1fr;
    gap: .6rem;
    padding: .72rem;
  }

  .home-search-wrap .tour-search label {
    font-size: .72rem;
  }

  .home-search-wrap .tour-search input {
    min-height: 38px;
    padding: .48rem .62rem;
    font-size: .78rem;
  }

  .home-search-wrap .tour-search button.btn-primary,
  .home-search-wrap .tour-search .btn-primary[type="submit"] {
    justify-self: center;
    align-self: center;
    min-height: 34px;
    padding: .46rem .72rem;
    font-size: .74rem;
  }
}
/* === End home search below hero patch === */
/* === Hero H1 slide motion patch === */
/* Movimiento suave de entrada para H1 del hero */
.hero h1 {
  animation: heroTitleSlideIn 1.05s ease both;
  will-change: opacity, transform, filter;
}

@keyframes heroTitleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    animation: none;
  }
}
/* === End hero H1 slide motion patch === */
/* === Hero slider title sync patch === */
/* H1 sincronizado con nombres del hero-slider */
.hero h1[data-slider-title] {
  transition: opacity .62s ease, transform .62s ease, filter .62s ease;
  will-change: opacity, transform, filter;
}

.hero h1[data-slider-title].is-changing {
  opacity: 0;
  transform: translateX(-34px);
  filter: blur(2px);
}

.hero h1[data-slider-title].is-entering {
  animation: heroSliderTitleIn .9s ease both;
}

@keyframes heroSliderTitleIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.hero-slide figcaption {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 10px 24px rgba(6, 22, 43, .62);
}

.hero-slide figcaption::before {
  color: #fff;
  text-shadow: 0 10px 24px rgba(6, 22, 43, .62);
}

@media (max-width: 640px) {
  .hero-slide figcaption {
    font-size: .7rem;
    right: .95rem;
    bottom: .75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1[data-slider-title],
  .hero h1[data-slider-title].is-entering {
    animation: none;
    transition: none;
  }
}
/* === End hero slider title sync patch === */

/* === Hero clean title patch === */
.hero-slide figcaption {
  display: none;
}
/* === End hero clean title patch === */
/* === Hero phrase destination sequence patch === */
.hero-title {
  display: grid;
  min-height: clamp(4.8rem, 10vw, 8.8rem);
  align-items: center;
}

.hero-main-phrase,
.hero-place {
  grid-area: 1 / 1;
  color: #fff;
  text-shadow: 0 16px 34px rgba(4, 18, 38, .66);
  background: transparent;
  will-change: opacity, transform, filter;
}

.hero-main-phrase {
  display: block;
}

.hero-place {
  display: block;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-main-phrase.is-hidden,
.hero-place.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.985);
  filter: blur(3px);
}

.hero-main-phrase.is-visible,
.hero-place.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-main-phrase.is-entering,
.hero-place.is-entering {
  animation: heroSequenceIn 1.15s ease both;
}

.hero-main-phrase.is-leaving,
.hero-place.is-leaving {
  animation: heroSequenceOut .78s ease both;
}

@keyframes heroSequenceIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroSequenceOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px) scale(.985);
    filter: blur(2px);
  }
}

@media (max-width: 640px) {
  .hero-title {
    min-height: clamp(3.8rem, 18vw, 5.4rem);
  }

  .hero-place {
    font-size: clamp(1.25rem, 7vw, 1.95rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-main-phrase,
  .hero-place,
  .hero-main-phrase.is-entering,
  .hero-place.is-entering,
  .hero-main-phrase.is-leaving,
  .hero-place.is-leaving {
    animation: none;
    transition: none;
  }
}
/* === End hero phrase destination sequence patch === */
/* === Hero unique subtitle patch === */
.hero-subtitle {
  max-width: min(760px, 92vw);
  margin: clamp(.65rem, 1.5vw, 1rem) 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgba(4, 18, 38, .58);
  animation: heroSubtitleSoftIn 1.35s ease both .28s;
}

.contact-hero-content .hero-subtitle,
.about-hero-content .hero-subtitle,
.store-hero-content .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroSubtitleSoftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 640px) {
  .hero-subtitle {
    max-width: min(320px, 88vw);
    margin-top: .55rem;
    font-size: .9rem;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-subtitle {
    animation: none;
  }
}
/* === End hero unique subtitle patch === */