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

:root {
  --ocean: #006D8E;
  --ocean-light: #00A8CC;
  --teal: #00C9B1;
  --gold: #C89B3C;
  --bg: #0B0F14;
  --bg2: #111820;
  --bg3: #161E28;
  --card-bg: #192130;
  --white: #FFFFFF;
  --off-white: #E8EDF2;
  --muted: #7A8899;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

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

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



/* ══ NAVBAR ══ */
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)
}

.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)
}

/* ══ HERO ══ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

/* ── Video slider ── */
.hero-videos {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-video-slide.active {
  opacity: 1;
}

.hero-video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay on top of videos */
.hero-videos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
      rgba(11, 15, 20, 0.60) 0%,
      rgba(11, 15, 20, 0.25) 45%,
      rgba(0, 109, 142, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Slide indicator dots */
.hero-video-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-video-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-video-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 3px;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 72px 100px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 177, 0.15);
  border: 1px solid rgba(0, 201, 177, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '📍';
  font-size: 0.8rem;
}

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

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

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

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bg);
  text-decoration: none;
  background: var(--teal);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  border: none;
}

.btn-primary:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 201, 177, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: all 0.25s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* ══ STATS BAR ══ */
.stats-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.stat-item {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══ SECTION WRAPPER ══ */
.section {
  padding: 96px 72px;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 56px;
}

.section-h2 .muted {
  color: var(--muted);
  font-weight: 400;
}

/* ══ CATEGORY PILLS ══ */
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.pill:hover,
.pill.active {
  background: rgba(0, 201, 177, 0.12);
  border-color: rgba(0, 201, 177, 0.4);
  color: var(--teal);
}

/* ══ PORTRAIT CARD GRID (Activities) ══ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.activities-grid .card-featured {
  grid-column: span 2;
}

.act-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--card-bg);
}

.act-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activities-grid .act-card:not(.card-featured) img {
  height: 420px;
}

.activities-grid .card-featured img {
  height: 500px;
}

.act-card:hover img {
  transform: scale(1.06);
}

.act-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}

.act-card:hover .act-card-overlay {
  background: linear-gradient(to top, rgba(0, 100, 120, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.act-card-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 201, 177, 0.15);
  border: 1px solid rgba(0, 201, 177, 0.25);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 10px;
  width: fit-content;
}

.act-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.act-card-desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}

.act-card:hover .act-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.act-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.25s;
}

.act-card-link:hover {
  gap: 10px;
}

.act-card-link::after {
  content: '→';
}

/* ══ SECOND ROW OF CARDS ══ */
.activities-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.activities-grid-2 .act-card img {
  height: 280px;
}

/* ══ FULL-BLEED CTA ══ */
.cta-band {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.cta-band-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=85&fit=crop&h=700');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.45);
}

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

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

.cta-band-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 700px;
}

.cta-band-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero-sub {
    display: none !important;
  }

  #caboToursGrid .tour-card:nth-child(n+5),
  #loretoToursGrid .tour-card:nth-child(n+5) {
    display: none !important;
  }
}

/* ══ SERVICES SECTION ══ */
.services-section {
  background: var(--bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.srv-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--card-bg);
}

.srv-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.srv-card:hover img {
  transform: scale(1.05);
}

.srv-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.srv-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 12px;
}

.srv-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.srv-card-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin-bottom: 20px;
}

.srv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.25s;
}

.srv-card-link:hover {
  gap: 12px;
}

.srv-card-link::after {
  content: '→';
}

/* ══ WHY US ══ */
.why-section {
  background: var(--bg);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.why-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: var(--bg);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  text-align: center;
}

.why-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.why-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.why-item:first-child {
  padding-top: 0;
}

.why-item:last-child {
  border-bottom: none;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 201, 177, 0.1);
  border: 1px solid rgba(0, 201, 177, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.why-item-text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══ TESTIMONIALS ══ */
.testimonials-section {
  background: var(--bg2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.25s, transform 0.25s;
}

.testi-card:hover {
  border-color: rgba(0, 201, 177, 0.3);
  transform: translateY(-4px);
}

.testi-stars {
  color: #FFB800;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testi-quote {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 201, 177, 0.3);
}

.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.testi-origin {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ══ CONTACT CTA ══ */
.contact-section {
  background: var(--bg3);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-text h2 .accent {
  color: var(--teal);
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
}

.contact-text .info {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: #25D366;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}

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

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}

.btn-email:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: #007AFF;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}

.btn-call:hover {
  background: #0062CC;
  transform: translateY(-2px);
}

/* ══ FOOTER ══ */
footer {
  background: #080C11;
  padding: 72px 72px 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: rgba(0, 201, 177, 0.4);
  color: var(--teal);
  background: rgba(0, 201, 177, 0.08);
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

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

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

/* ══ SCROLL ANIMATIONS ══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav {
    padding: 0 32px;
  }

  .nav-links {
    gap: 24px;
  }

  .section {
    padding: 72px 40px;
  }

  .hero-content {
    padding: 0 40px 80px;
  }

  /* Activities: 2 columns on tablet */
  .activities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .activities-grid .card-featured {
    grid-column: span 2;
  }

  .activities-grid .act-card:not(.card-featured) img {
    height: 320px;
  }

  .activities-grid .card-featured img {
    height: 400px;
  }

  .activities-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .activities-grid-2 .act-card img {
    height: 240px;
  }

  /* Services: 2 + 1 */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid .srv-card:last-child {
    grid-column: span 2;
  }

  .srv-card img {
    height: 320px;
  }

  /* Why — stack early */
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-visual {
    display: none;
  }

  /* hide image on tablet to save space */
  .why-img-badge {
    display: none;
  }

  /* Testimonials: 2 col */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid .testi-card:last-child {
    grid-column: span 2;
  }

  /* Contact */
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  /* Footer */
  footer {
    padding: 60px 40px 32px;
  }

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

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

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Announcement bar */
  .ann-bar {
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  /* ── Navbar: show logo + book btn, hide links ── */
  nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo-main {
    font-size: 0.9rem;
  }

  .nav-logo-sub {
    display: none;
  }

  .nav-btn {
    font-size: 0.72rem;
    padding: 8px 16px;
  }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 24px 72px;
    max-width: 100%;
    align-items: flex-start;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-scroll {
    display: none;
  }

  /* ── Stats bar: 2×2 grid ── */
  .stats-bar {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 calc(50% - 1px);
    max-width: none;
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  /* ── Sections ── */
  .section {
    padding: 56px 20px;
  }

  .section-h2 {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  /* ── Category pills: horizontal scroll ── */
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 8px;
    margin-bottom: 28px;
    scrollbar-width: none;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .pill {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  /* ── Activities: single column stack ── */
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .activities-grid .card-featured {
    grid-column: span 1;
  }

  .activities-grid .act-card:not(.card-featured) img {
    height: 260px;
  }

  .activities-grid .card-featured img {
    height: 300px;
  }

  /* Description always visible on mobile (no hover) */
  .act-card-desc {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .activities-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .activities-grid-2 .act-card img {
    height: 200px;
  }

  .act-card-title {
    font-size: 1rem;
  }

  .act-card-overlay {
    padding: 16px;
  }

  /* ── CTA band ── */
  .cta-band {
    height: auto;
    min-height: 360px;
  }

  .cta-band-content {
    padding: 48px 24px;
  }

  .cta-band-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .cta-band-sub {
    font-size: 0.88rem;
  }

  /* ── Services: single column ── */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .srv-card:last-child {
    grid-column: span 1;
  }

  .srv-card img {
    height: 280px;
  }

  .srv-card-title {
    font-size: 1.3rem;
  }

  /* ── Why us: single column, no image ── */
  .why-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-visual {
    display: none;
  }

  .why-img-badge {
    display: none;
  }

  .why-item {
    padding: 20px 0;
    gap: 16px;
  }

  .why-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* ── Testimonials: single column ── */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testi-card:last-child {
    grid-column: span 1;
  }

  .testi-card {
    padding: 24px;
  }

  .testi-quote {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  /* ── Contact ── */
  .contact-inner {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-wa,
  .btn-email {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  footer {
    padding: 48px 20px 28px;
  }

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

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

  .footer-desc {
    max-width: 100%;
  }

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

  /* ── Float WA button ── */
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 380px)
══════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-h1 {
    font-size: 2rem;
  }

  .activities-grid-2 {
    grid-template-columns: 1fr;
  }

  .activities-grid-2 .act-card img {
    height: 220px;
  }

  .stat-item {
    flex: 1 1 100%;
    border-right: none !important;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* Touch devices — always show card descriptions */
@media (hover: none) {
  .act-card-desc {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* ══ CONTACT FORM LAYOUT ══ */
.contact-layout {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-text h2 .accent {
  color: var(--teal);
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  align-items: center;
}

.contact-info-item {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-direct-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Form ── */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 201, 177, 0.5);
  background: rgba(0, 201, 177, 0.05);
}

.form-group select {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300C9B1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select:focus {
  border-color: rgba(0, 201, 177, 0.6);
  background-color: var(--bg3);
}

.form-group select option {
  background: var(--bg2);
  color: var(--white);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: var(--teal);
  border: none;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 201, 177, 0.35);
}

.form-success {
  display: none;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  padding: 14px;
  border: 1px solid rgba(0, 201, 177, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(0, 201, 177, 0.08);
}

/* ── Form — mobile ── */
@media (max-width: 1024px) {
  .contact-layout {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-direct-btns {
    flex-direction: column;
  }

  .contact-direct-btns .btn-wa,
  .contact-direct-btns .btn-email,
  .contact-direct-btns .btn-call {
    justify-content: center;
  }
}

/* ══ HAMBURGER + MOBILE MENU ══ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none
}

.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, .98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 32px;
  z-index: 199;
  border-bottom: 1px solid rgba(255, 255, 255, .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, .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)
}

.mob-book-btn {
  margin-top: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--teal) !important;
  color: #0d0d0d !important;
  font-weight: 700 !important;
  padding: 12px 24px;
  border-radius: 6px;
  border: none !important
}

/* ══ THEME TOGGLE ══ */
.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)
}

/* ══ LIGHT MODE ══ */
body.light-mode {
  --bg: #F5F7FA;
  --bg2: #EAECF0;
  --bg3: #E0E4EA;
  --card-bg: #fff;
  --white: #1A1E2C;
  --off-white: #2A2F3E;
  --muted: #6B7280;
  --border: rgba(0, 0, 0, .08);
  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 .mobile-menu {
  background: rgba(245, 247, 250, .98);
  border-bottom-color: rgba(0, 0, 0, .1)
}

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

body.light-mode .mobile-menu a:hover {
  color: var(--teal)
}

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

body.light-mode .nav-links a:hover {
  color: #1A1E2C
}

body.light-mode .nav-hamburger span {
  background: #1A1E2C
}

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

body.light-mode .hero-badge {
  background: rgba(0, 201, 177, .15);
  border-color: rgba(0, 201, 177, .35)
}

body.light-mode .stats-bar {
  background: var(--bg2)
}

body.light-mode .stat-label {
  color: var(--muted)
}

body.light-mode .testi-card {
  background: var(--card-bg);
  border-color: rgba(0, 0, 0, .1)
}

body.light-mode .testi-quote {
  color: var(--off-white)
}

body.light-mode .contact-form {
  background: var(--card-bg);
  border-color: rgba(0, 0, 0, .1)
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
  background: rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .12);
  color: var(--white)
}

body.light-mode .form-group label {
  color: var(--off-white)
}

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

body.light-mode .footer-col h4 {
  color: #1A1E2C
}

body.light-mode .why-item {
  border-bottom-color: rgba(0, 0, 0, .08)
}

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

body.light-mode .section-h2 {
  color: #1A1E2C
}

body.light-mode .section-h2 .muted {
  color: var(--muted)
}

body.light-mode .ann-bar {
  background: linear-gradient(90deg, var(--ocean), var(--teal))
}

/* ══ MOBILE OVERRIDES ══ */
@media(max-width:768px) {
  .hero-sub {
    display: none
  }

  .nav-btn {
    display: none !important
  }

  .nav-hamburger {
    display: flex
  }
}

/* ══ HOME TOUR GRID ══ */
.home-tours-section {
  padding: 96px 72px
}

.home-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px
}

.home-tour-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform .3s, border-color .3s, box-shadow .3s
}

.home-tour-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 201, 177, .4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4)
}

.home-tour-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .55s ease
}

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

.home-tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px
}

.home-tour-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 5px
}

.home-tour-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px
}

.home-tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.home-tour-card-price {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--teal)
}

.home-tour-card-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65)
}

.home-tours-view-all {
  display: flex;
  justify-content: center;
  margin-top: 8px
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--teal);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .25s
}

.btn-view-all:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 201, 177, .35)
}

.home-tours-loading {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  padding: 40px 0
}

.loreto-section-bg {
  background: var(--bg2)
}

@media(max-width:1024px) {
  .home-tours-section {
    padding: 72px 40px
  }

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

@media(max-width:768px) {
  .home-tours-section {
    padding: 56px 20px
  }

  .home-tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .home-tour-card img {
    height: 200px
  }
}

@media(max-width:430px) {
  .home-tours-grid {
    grid-template-columns: 1fr
  }

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