*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #0d0d0d;
  --bg2: #161616;
  --card-bg: #1a1a1a;
  --card-border: rgba(255, 255, 255, 0.08);
  --teal: #17B5AF;
  --gold: #F2C94C;
  --white: #FFFFFF;
  --muted: #888;
  --radius: 10px
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden
}

/* Deshabilitar botones de WhatsApp por petición del usuario */
a[href*="wa.me"] {
  pointer-events: none !important;
  opacity: 0.8;
  cursor: default !important;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .3s ease, border-color .3s ease
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.99);
  border-bottom-color: rgba(255, 255, 255, 0.15)
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none
}

.nav-logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.1
}

.nav-logo-sub {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal)
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a.active {
  color: var(--teal)
}

.nav-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bg);
  text-decoration: none;
  background: var(--teal);
  padding: 10px 22px;
  border-radius: 6px;
  transition: all .25s
}

.nav-btn:hover {
  background: #12a09a;
  transform: translateY(-1px)
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 32px;
  z-index: 199;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-direction: column
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s
}

.mobile-menu a:last-child {
  border-bottom: none
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--teal)
}

.hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  overflow: hidden;
  margin-top: 72px
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a2940 0%, #003d5c 40%, #004a6e 100%)
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=85&fit=crop&h=700') center/cover no-repeat;
  opacity: .22
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 13, 13, .2) 0%, rgba(13, 13, 13, .75) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--teal);
  opacity: .5
}

.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px
}

.hero-h1 .teal {
  color: var(--teal)
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .62);
  max-width: 520px;
  line-height: 1.6
}

.filter-bar {
  background: var(--bg2);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.filter-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted)
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1
}

.filter-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  background: transparent;
  transition: all .2s;
  user-select: none
}

.filter-pill:hover {
  border-color: var(--teal);
  color: var(--teal)
}

.filter-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--bg)
}

.filter-count {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  margin-left: auto
}

.filter-count span {
  color: var(--white);
  font-weight: 700
}

.tours-section {
  padding: 56px 48px 80px
}

.tours-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.tour-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  text-decoration: none;
  color: inherit
}

.tour-card:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 181, 175, .45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .65), 0 0 0 1px rgba(23, 181, 175, .12)
}

.tour-card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.tour-card-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.25, .46, .45, .94)
}

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

.tour-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .18) 35%, rgba(0, 0, 0, .72) 72%, rgba(0, 0, 0, .93) 100%);
  pointer-events: none
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  background: rgba(23, 181, 175, .88);
  color: #0d0d0d;
  backdrop-filter: blur(8px)
}

.tour-badge.featured {
  background: var(--gold);
  color: #111
}

.tour-badge.popular {
  background: #e74c3c;
  color: #fff
}

.tour-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px 22px;
  z-index: 2
}

.tour-category {
  font-family: 'Montserrat', sans-serif;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px
}

.tour-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.tour-card-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--card-bg);
  border-top: 1px solid rgba(255, 255, 255, .07);
  gap: 10px
}

.tour-duration-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  padding: 5px 10px;
  white-space: nowrap
}

.tour-strip-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.tour-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap
}

.tour-price span {
  font-size: .6rem;
  font-weight: 500;
  color: rgba(242, 201, 76, .65)
}

.tour-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 5px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
  white-space: nowrap
}

.tour-card:hover .tour-cta {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all
}

.modal {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  width: 100%;
  max-width: 1160px;
  max-height: 90vh;
  margin: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: minmax(0, 1fr);
  transform: translateY(20px) scale(.97);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .8)
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1)
}

.modal-gallery {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 320px;
  cursor: zoom-in
}

.modal-gallery-expand-hint {
  position: absolute;
  bottom: 48px;
  right: 12px;
  z-index: 6;
  background: rgba(0, 0, 0, .55);
  color: rgba(255, 255, 255, .75);
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  pointer-events: none;
  backdrop-filter: blur(4px)
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all
}

.lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .8);
  cursor: zoom-out
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .8);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.lightbox-close:hover {
  background: rgba(231, 76, 60, .6);
  color: #fff
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 5
}

.lightbox-nav:hover {
  background: rgba(23, 181, 175, .7)
}

.lightbox-nav-prev {
  left: 18px
}

.lightbox-nav-next {
  right: 18px
}

.modal-gallery-slides {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.modal-gallery-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%
}

.modal-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.modal-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 5
}

.modal-gallery-btn:hover {
  background: rgba(23, 181, 175, .7)
}

.modal-gallery-prev {
  left: 12px
}

.modal-gallery-next {
  right: 12px
}

.modal-gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5
}

.modal-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: none;
  cursor: pointer;
  transition: all .25s
}

.modal-gallery-dot.active {
  background: var(--teal);
  width: 20px;
  border-radius: 3px
}

.modal-gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(23, 181, 175, .92);
  color: var(--bg);
  backdrop-filter: blur(4px)
}

.modal-gallery-badge.featured {
  background: var(--gold);
  color: #111
}

.modal-gallery-badge.popular {
  background: #e74c3c;
  color: var(--white)
}

.modal-right {
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 181, 175, .3) transparent
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s
}

.modal-close:hover {
  background: rgba(231, 76, 60, .6);
  color: var(--white);
  border-color: transparent
}

.modal-category-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px
}

.modal-description {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  margin-bottom: 20px
}

.modal-description p+p {
  margin-top: 10px
}

.modal-price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.mp-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1
}

.mp-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .08em
}

.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px
}

.modal-detail-item {
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-left: 3px solid #2563eb;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px
}

.modal-detail-icon {
  display: none
}

.modal-detail-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px
}

.modal-detail-value {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white)
}

.modal-includes-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px
}

.modal-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px
}

.modal-include-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(23, 181, 175, .25);
  color: rgba(23, 181, 175, .8);
  background: rgba(23, 181, 175, .07)
}

.modal-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.modal-form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5)
}

.modal-form-group input {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: .84rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%
}

.modal-form-group input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.modal-form-group input:focus {
  border-color: rgba(23, 181, 175, .5);
  background: rgba(23, 181, 175, .05)
}

.modal-form-group input[type="date"] {
  color-scheme: dark
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap
}

.modal-btn-reserve {
  flex: 1;
  min-width: 140px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 6px;
  border: none;
  background: var(--teal);
  color: var(--bg);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.modal-btn-reserve:hover {
  background: #12a09a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 181, 175, .35)
}

.modal-btn-reserve.ready {
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .35), 0 8px 28px rgba(37, 99, 235, .45);
  color: #fff
}

.modal-btn-reserve.ready:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .4), 0 12px 32px rgba(37, 99, 235, .55)
}

.modal-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 18px;
  border-radius: 6px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer
}

.modal-btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px)
}

.modal-note {
  font-size: .7rem;
  color: rgba(255, 255, 255, .28);
  text-align: center;
  margin-top: 6px;
  line-height: 1.5
}

.cta-band {
  background: linear-gradient(135deg, #003d5c 0%, #005070 50%, #006080 100%);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1533760881669-80db4d7b341d?w=1400&q=80&fit=crop&h=400') center/cover;
  opacity: .12
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto
}

.cta-band-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px
}

.cta-band-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px
}

.cta-band-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 32px;
  line-height: 1.6
}

.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-teal {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  background: var(--teal);
  color: var(--bg);
  text-decoration: none;
  transition: all .25s
}

.btn-teal:hover {
  background: #12a09a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 181, 175, .3)
}

.btn-outline-white {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: all .25s
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08)
}

footer {
  background: #080808;
  padding: 60px 48px 32px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 48px
}

.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px
}

.footer-logo-sub {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px
}

.footer-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px
}

.footer-social {
  display: flex;
  gap: 8px
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s
}

.footer-social a:hover {
  border-color: var(--teal);
  color: var(--teal)
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col ul a {
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

.footer-col ul a:hover {
  color: var(--white)
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.footer-bottom p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .2)
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform .3s, box-shadow .3s
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55)
}

@media(max-width:1024px) {
  nav {
    padding: 0 28px
  }

  .filter-bar {
    padding: 16px 28px
  }

  .tours-section {
    padding: 48px 28px 64px
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cta-band {
    padding: 56px 32px
  }

  footer {
    padding: 48px 28px 28px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .footer-grid>div:first-child {
    grid-column: span 2
  }

  .modal {
    grid-template-columns: 1fr;
    max-height: 95vh
  }

  .modal-gallery {
    min-height: 260px;
    max-height: 300px
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 20px;
    height: 64px
  }

  .nav-links,
  .nav-btn {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  .hero {
    height: 45vh
  }

  .filter-bar {
    padding: 14px 20px;
    gap: 10px
  }

  .filter-pill {
    font-size: .62rem;
    padding: 7px 12px
  }

  .filter-count {
    display: none
  }

  .tours-section {
    padding: 36px 20px 56px
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .tour-card-img img {
    height: 240px
  }

  .cta-band {
    padding: 48px 20px
  }

  footer {
    padding: 40px 20px 24px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .footer-grid>div:first-child {
    grid-column: span 1
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .modal-overlay {
    padding: 10px;
    align-items: flex-start;
  }

  .modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: 12px;
    margin: auto 0;
  }

  .modal-right {
    padding: 24px 20px 20px
  }

  .modal-details {
    grid-template-columns: 1fr 1fr
  }

  .modal-form-row {
    grid-template-columns: 1fr
  }

  .modal-actions {
    flex-direction: column
  }

  .modal-gallery {
    aspect-ratio: auto;
    min-height: 260px;
    max-height: 320px
  }
}

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  flex-shrink: 0;
  color: #fff;
  padding: 0;
  line-height: 0
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-1px)
}

body.light-mode {
  --bg: #F5F7FA;
  --bg2: #EAECF0;
  --card-bg: #fff;
  --card-border: rgba(0, 0, 0, .1);
  --muted: #6B7280;
  --white: #1A1E2C;
  background: var(--bg);
  color: var(--white)
}

body.light-mode nav {
  background: rgba(245, 247, 250, 0.7) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom-color: rgba(0, 0, 0, 0.08)
}

body.light-mode .nav-links a.active {
  color: #00C9B1
}

body.light-mode .nav-links a {
  color: rgba(26, 30, 44, .7)
}

body.light-mode .nav-logo-sub {
  color: #00C9B1
}

body.light-mode .filter-bar {
  background: var(--bg2);
  border-bottom-color: rgba(0, 0, 0, .08)
}

body.light-mode .filter-pill {
  border-color: rgba(0, 0, 0, .15);
  color: rgba(26, 30, 44, .6)
}

body.light-mode .tour-card {
  background: var(--card-bg);
  border-color: var(--card-border)
}

body.light-mode .tour-card-strip {
  background: var(--card-bg)
}

body.light-mode .tour-duration-pill {
  color: rgba(26, 30, 44, .55);
  background: rgba(0, 0, 0, .05);
  border-color: rgba(0, 0, 0, .15)
}

body.light-mode .tour-title {
  color: #fff
}

body.light-mode .modal {
  background: #fff;
  border-color: rgba(0, 0, 0, .1)
}

body.light-mode .modal-right {
  color: #1A1E2C
}

body.light-mode .modal-title {
  color: #1A1E2C
}

body.light-mode .hero-h1,
body.light-mode .cta-band-title {
  color: #fff !important;
}

body.light-mode .modal-description {
  color: rgba(26, 30, 44, .7)
}

body.light-mode .modal-form-group label {
  color: rgba(26, 30, 44, .7)
}

body.light-mode .modal-form-group input {
  background: rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .12);
  color: #1A1E2C
}

body.light-mode .modal-form-group input::placeholder {
  color: rgba(26, 30, 44, .4)
}

body.light-mode .modal-form-group input[type="date"] {
  color-scheme: light
}

body.light-mode .cta-band::before {
  opacity: .08
}

body.light-mode footer {
  background: #DDE1E8
}

body.light-mode .theme-toggle {
  background: transparent;
  border-color: rgba(0, 0, 0, .15);
  color: #1A1E2C
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.show {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .08s
}

.reveal-delay-2 {
  transition-delay: .16s
}

.reveal-delay-3 {
  transition-delay: .24s
}

.reveal-delay-4 {
  transition-delay: .32s
}

.reveal-delay-5 {
  transition-delay: .40s
}

.reveal-delay-6 {
  transition-delay: .48s
}
