/* ─── RESET & BASE ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

/* ─── SECTION NAV (persistent top buttons) ─── */
.section-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(30, 59, 46, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
}

.section-nav-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.section-nav-btn.active {
  color: white;
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

/* ─── SPA TRANSITIONS ─── */
.spa-section {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.spa-visible {
  opacity: 1;
  transform: translateY(0);
}
.spa-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

/* ─── LINKTREE HERO (replaces old hero) ─── */
.linktree-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}
#linktree-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
.linktree-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 59, 46, 0.65) 0%, rgba(50, 100, 70, 0.60) 100%);
  z-index: -1;
  pointer-events: none;
}
.linktree-card {
  max-width: 400px;
  width: 100%;
  background: transparent;
  border-radius: 44px 44px 32px 32px;
  padding: 40px 28px 28px;
  text-align: center;
  position: relative;
}
.linktree-card::before {
  content: "🌿";
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 6rem;
  opacity: 0.12;
  transform: rotate(25deg);
  pointer-events: none;
}
.linktree-card::after {
  content: "🌱";
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-size: 4.5rem;
  opacity: 0.12;
  transform: rotate(-15deg);
  pointer-events: none;
}
.linktree-card .profile { margin-bottom: 20px; }
.linktree-card .profile-avatar {
  width: 96px; height: 96px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(217, 227, 212, 0.85), rgba(184, 205, 176, 0.85));
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.4);
}
.linktree-card .profile h1 {
  font-size: 1.5rem; font-weight: 700; color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.linktree-card .profile p {
  font-size: 0.95rem; color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.linktree-card .profile p span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 2px 14px; border-radius: 40px;
  font-size: 0.75rem; color: white; font-weight: 600;
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.linktree-card .links-grid { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 20px; }
.linktree-card .link-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 60px;
  font-weight: 600; font-size: 1rem;
  color: #1e3b2e; text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  font-family: 'Quicksand', sans-serif;
}
.linktree-card .link-btn .icon { font-size: 1.6rem; }
.linktree-card .link-btn .arrow { margin-left: auto; font-size: 1.2rem; opacity: 0.35; }
.linktree-card .link-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.linktree-card .link-btn.whatsapp {
  background: rgba(37, 211, 102, 0.78);
  border-color: rgba(37, 211, 102, 0.4); color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.linktree-card .link-btn.whatsapp:hover { background: rgba(37, 211, 102, 0.92); }
.linktree-card .social-bar { display: flex; justify-content: center; gap: 24px; margin: 16px 0 10px; }
.linktree-card .social-bar a {
  font-size: 1.5rem; color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: color 0.2s, transform 0.2s;
}
.linktree-card .social-bar a:hover { color: white; transform: scale(1.1); }
.linktree-card .footer-text {
  font-size: 0.75rem; color: rgba(255, 255, 255, 0.65);
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.linktree-card .footer-text a { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.linktree-card .footer-text a:hover { text-decoration: underline; color: white; }

@media (max-width: 420px) {
  .section-nav { gap: 4px; padding: 8px 10px; }
  .section-nav-btn { padding: 6px 12px; font-size: 0.78rem; gap: 4px; }
  .linktree-card { padding: 28px 18px 24px; }
  .linktree-card .profile-avatar { width: 76px; height: 76px; font-size: 2.4rem; }
  .linktree-card .profile h1 { font-size: 1.3rem; }
  .linktree-card .link-btn { padding: 14px 16px; font-size: 0.9rem; }
  .linktree-card .link-btn .icon { font-size: 1.4rem; }
}

body {
  font-family: 'Quicksand', 'Segoe UI', system-ui, sans-serif;
  background: #f3efe8;
  color: #1e3b2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

@media (max-width: 640px) {
  section {
    padding: 48px 0;
  }
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  border-radius: 60px;
  padding: 14px 24px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  will-change: transform;
  isolation: isolate;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
@media (max-width: 640px) {
  .whatsapp-float {
    padding: 12px 18px;
    font-size: 0.9rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ====== LANG PILL ====== */
.lang-pill {
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 99999;
  display: flex;
  background: #1e3b2e;
  background: rgba(30, 59, 46, 0.95);
  border-radius: 30px;
  padding: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  gap: 2px;
  isolation: isolate;
  will-change: transform;
}
@supports (backdrop-filter: blur(8px)) {
  .lang-pill {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
.lang-pill-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Quicksand', sans-serif;
}
.lang-pill-btn.active {
  background: #25d366;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}
.lang-pill-btn:hover:not(.active) { color: white; }
@media (max-width: 640px) {
  .lang-pill { top: 58px; right: 14px; }
  .lang-pill-btn { font-size: 0.72rem; padding: 5px 10px; }
}

/* ====== HEADER ====== */
header {
  background: #1e3b2e;
  color: #f0f0e8;
  padding: 16px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #f0f0e8;
}
.logo span { color: #b8d4b0; }
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
nav a {
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 4px;
  color: #e8ede6;
}
nav a:hover {
  border-color: #b8d4b0;
  color: #dce8d4;
}

/* ====== LINKTREE LANDING ====== */
.linktree-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  background: linear-gradient(160deg, #f3efe8 0%, #e8ede2 100%);
}
.linktree-card {
  max-width: 400px;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(2px);
  border-radius: 44px 44px 32px 32px;
  padding: 40px 28px 28px;
  box-shadow: 0 20px 60px rgba(60, 80, 60, 0.12), 0 8px 24px rgba(60, 80, 60, 0.04);
  text-align: center;
  border: 1px solid rgba(180, 195, 170, 0.15);
  position: relative;
  overflow: hidden;
}
.linktree-card::before {
  content: "🌿";
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 6rem;
  opacity: 0.04;
  transform: rotate(25deg);
  pointer-events: none;
}
.linktree-card::after {
  content: "🌱";
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-size: 4.5rem;
  opacity: 0.04;
  transform: rotate(-15deg);
  pointer-events: none;
}
.profile { margin-bottom: 20px; }
.profile-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d9e3d4, #b8cdb0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 6px 16px rgba(80, 110, 80, 0.15);
  border: 4px solid white;
  overflow: hidden;
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3b2e;
  letter-spacing: -0.3px;
}
.profile p {
  font-size: 0.95rem;
  color: #5a7565;
  font-weight: 400;
  margin-top: 2px;
  padding: 0 10px;
}
.profile p span {
  display: inline-block;
  background: #eef4eb;
  padding: 2px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  color: #3a5a48;
  font-weight: 600;
  margin-top: 6px;
}
.links-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 20px;
}
.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: white;
  border: 1.5px solid #e4ece0;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  color: #1e3b2e;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  font-family: 'Quicksand', sans-serif;
}
.link-btn .icon { font-size: 1.6rem; line-height: 1; }
.link-btn .arrow {
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.link-btn:hover {
  background: #f5faf4;
  border-color: #8aaa80;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 110, 70, 0.08);
}
.link-btn:hover .arrow { opacity: 0.8; }
.link-btn.whatsapp {
  background: #e5f2e5;
  border-color: #b3d0b3;
}
.link-btn.whatsapp:hover {
  background: #d4e8d4;
  border-color: #7aaa7a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.12);
}
.social-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0 10px;
}
.social-bar a {
  font-size: 1.5rem;
  color: #5a7565;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.social-bar a:hover {
  color: #1e3b2e;
  transform: scale(1.1);
}
.footer-text {
  font-size: 0.75rem;
  color: #8fa396;
  margin-top: 16px;
  letter-spacing: 0.3px;
  border-top: 1px solid #ecf1ea;
  padding-top: 16px;
}
.footer-text a {
  color: #4a7a5a;
  text-decoration: none;
  font-weight: 600;
}
.footer-text a:hover { text-decoration: underline; }
.scroll-hint {
  margin-top: 16px;
  font-size: 1.2rem;
  color: #8fa396;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 420px) {
  .linktree-card { padding: 28px 18px 24px; border-radius: 32px; }
  .profile-avatar { width: 76px; height: 76px; font-size: 2.4rem; }
  .profile h1 { font-size: 1.3rem; }
  .link-btn { padding: 14px 16px; font-size: 0.9rem; }
  .link-btn .icon { font-size: 1.4rem; }
}
@media (max-width: 360px) {
  .linktree-card { padding: 20px 14px; }
  .link-btn { padding: 12px 12px; font-size: 0.85rem; gap: 8px; }
  .link-btn .icon { font-size: 1.2rem; }
}

/* ====== INFO ====== */
.info-section {
  background: linear-gradient(160deg, #1e3b2e 0%, #296a4a 100%);
  color: white;
  padding: 72px 0;
}
.info-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}
.info-text p {
  opacity: 0.92;
  line-height: 1.7;
  margin-bottom: 12px;
}
.info-contact {
  margin-top: 20px;
}
.info-contact p {
  margin-bottom: 6px;
  opacity: 0.85;
}
.info-contact a {
  color: #b8d4b0;
  font-weight: 600;
}
.info-image {
  display: flex;
  align-items: center;
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
  background: #f3efe8;
  padding: 60px 0;
}
.testimonials-title {
  text-align: center;
  color: #1e3b2e;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(60, 80, 60, 0.08);
}
.testimonial-card p {
  font-style: italic;
  color: #3a5a48;
  line-height: 1.6;
}
.testimonial-card span {
  display: block;
  font-weight: 700;
  margin-top: 12px;
  color: #1e3b2e;
  font-size: 0.9rem;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-badges span {
  background: white;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: #1e3b2e;
}

/* ====== SECTION TITLES ====== */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #1e3b2e;
  letter-spacing: -0.3px;
}
.section-sub {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 44px;
  font-size: 1.1rem;
  color: #5a7565;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* ====== VIDEO CONTAINER ====== */
.tour-video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-height: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  user-select: none;
  -webkit-user-select: none;
}
.tour-video {
  width: 100%;
  height: 100%;
  max-height: 400px;
  min-height: 280px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  background: #0a2a20;
}
.tour-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tour-video-container::after {
  content: "🎬 Amazonas Colombia";
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(30, 59, 46, 0.85);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

/* ====== CARD ====== */
.card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(60, 80, 60, 0.10); }
.card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #1e3b2e; }
.card .price { font-weight: 700; color: #2a7a50; font-size: 1.2rem; margin: 8px 0; }
.card .badge { display: inline-block; background: #eef4eb; padding: 4px 14px; border-radius: 30px; font-size: 0.8rem; font-weight: 600; color: #1e3b2e; margin-bottom: 8px; }
.card ul { list-style: none; margin: 12px 0; }
.card ul li { padding: 4px 0 4px 24px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%232a7a50" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') left center no-repeat; background-size: 16px; }

.btn-card {
  display: inline-block;
  background: #1e3b2e;
  color: white;
  padding: 12px 30px;
  border-radius: 60px;
  font-weight: 600;
  margin: 10px 8px 0 0;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Quicksand', sans-serif;
}
.btn-card:hover { background: #2a6a4a; transform: translateY(-1px); }

/* ====== TOURS ====== */
.tours-section { background: #edf2ea; }

/* ====== FILTERS ====== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  background: white;
  border: 2px solid #e4ece0;
  border-radius: 24px;
  padding: 20px 28px;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.06);
}
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-weight: 700; color: white; font-size: 0.95rem; background: #1e3b2e; padding: 6px 16px; border-radius: 30px; }
.filter-btn {
  background: white;
  border: 2px solid #c5d0bc;
  color: #5a7565;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Quicksand', sans-serif;
}
.filter-btn:hover {
  border-color: #2a6a4a;
  color: #2a6a4a;
  box-shadow: 0 4px 12px rgba(30, 59, 46, 0.08);
  transform: translateY(-1px);
}
.filter-btn.active {
  background: #1e3b2e;
  border-color: #1e3b2e;
  color: white;
  box-shadow: 0 4px 12px rgba(30, 59, 46, 0.18);
}
.filter-count { text-align: center; margin-bottom: 20px; color: #5a7565; font-size: 0.95rem; }

/* ====== ACCORDION ====== */
.tour-accordion { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tour-item {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(60, 80, 60, 0.05);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.tour-item:hover { box-shadow: 0 8px 28px rgba(60, 80, 60, 0.08); transform: translateY(-2px); }
.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: #fbfaf7;
  transition: background 0.2s;
  gap: 12px;
  flex-wrap: wrap;
}
.tour-header:hover { background: #f0f6f0; }
.tour-header-left { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.tour-header-left h2 { font-size: 1.05rem; font-weight: 700; color: #1e3b2e; line-height: 1.25; }
.tour-header-left .meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.85rem; color: #5a7565; }
.tour-header-left .meta strong { color: #1e3b2e; }
.tour-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tour-price { font-weight: 700; font-size: 1rem; color: #2a7a50; background: #eef4eb; padding: 4px 14px; border-radius: 40px; white-space: nowrap; }
.tour-toggle { font-size: 1.5rem; font-weight: 300; color: #1e3b2e; transition: transform 0.3s ease; line-height: 1; user-select: none; }
.tour-toggle.open { transform: rotate(180deg); }
.tour-image { width: 100%; max-height: 200px; overflow: hidden; }
.tour-image img { width: 100%; height: 100%; max-height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.tour-item:hover .tour-image img { transform: scale(1.03); }
.tour-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.35s ease; padding: 0 20px; background: white; }
.tour-body.open { max-height: 2800px; padding: 0 20px 20px; }
.tour-body-inner { border-top: 1px solid #edede6; padding-top: 18px; }
.tour-body-inner h3 { font-size: 1.05rem; font-weight: 700; color: #1e3b2e; margin: 18px 0 6px; }
.tour-body-inner h3:first-of-type { margin-top: 0; }
.tour-body-inner p { margin-bottom: 10px; line-height: 1.7; color: #3a5a48; font-size: 0.92rem; }
.tour-body-inner ul { list-style: none; padding-left: 0; }
.tour-body-inner ul li { padding: 4px 0 4px 24px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%232a7a50" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') left center no-repeat; background-size: 16px; font-size: 0.92rem; }
.tour-body-inner .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 10px 0; }
.tour-body-inner .highlight-box { background: #f6faf6; padding: 16px 20px; border-radius: 14px; border-left: 4px solid #1e3b2e; margin: 14px 0; color: #3a5a48; font-size: 0.92rem; }

/* ─── Tour price calculator ─── */
.tour-calc {
  background: #f6faf6;
  border: 1px solid #dce8d8;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 14px 0;
}
.tour-calc-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.tour-calc-row:last-child { margin-bottom: 0; }
.tour-calc-label { font-size: 0.88rem; font-weight: 500; color: #3a5a48; }
.tour-calc-total-row { padding-top: 8px; border-top: 1px solid #dce8d8; }
.tour-calc-price { font-weight: 700; font-size: 1rem; color: #2a7a50; }
.tour-pax-stepper { display: inline-flex; align-items: center; border: 1.5px solid #c5d0bc; border-radius: 8px; overflow: hidden; height: 32px; }
.tour-pax-stepper .pax-btn { width: 32px; height: 32px; font-size: 1rem; background: white; border: none; cursor: pointer; color: #1e3b2e; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.tour-pax-stepper .pax-btn:hover { background: #dce8d8; }
.tour-pax-stepper .pax-value { min-width: 32px; text-align: center; font-weight: 700; font-size: 0.95rem; color: #1e3b2e; background: white; user-select: none; }
.tour-body-inner .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 12px 0; border-radius: 12px; border: 1px solid #e9e9e2; }
.tour-body-inner .table-wrap table { min-width: 360px; width: 100%; font-size: 0.85rem; }
.tour-body-inner .table-wrap table th, .tour-body-inner .table-wrap table td { padding: 8px 12px; white-space: nowrap; }

.origin-badge {
  display: inline-block;
  background: #f1c40f;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1e3b2e;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-reserva {
  display: inline-block;
  background: #1e3b2e;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 60px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Quicksand', sans-serif;
}
.btn-reserva:hover { background: #2a6a4a; transform: scale(1.02); }
.btn-reserva.whatsapp { background: #25d366; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25); }
.btn-reserva.whatsapp:hover { background: #1ebe5c; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }

/* ====== PRICING TABLE ====== */
.pricing-section { background: #f3efe8; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: white; border-radius: 24px; box-shadow: 0 4px 16px rgba(60, 80, 60, 0.06); padding: 4px; }
.badge-currency { display: inline-block; background: #eef4eb; color: #1e3b2e; padding: 6px 18px; border-radius: 40px; font-weight: 600; font-size: 0.85rem; margin-bottom: 12px; }
.price-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 0.95rem; background: white; }
.price-table thead { background: #1e3b2e; color: white; }
.price-table thead th { padding: 16px 14px; text-align: left; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.3px; white-space: nowrap; }
.price-table tbody tr { border-bottom: 1px solid #edede6; transition: background 0.15s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #f3f8f3; }
.price-table tbody td { padding: 12px 14px; vertical-align: middle; }
.package-col { font-weight: 600; color: #1e3b2e; min-width: 180px; }
.duration-col { font-weight: 500; color: #5a7565; white-space: nowrap; }
.price-col { font-weight: 600; color: #1a5a3a; white-space: nowrap; font-variant-numeric: tabular-nums; }
.footnote { margin-top: 24px; padding: 20px 24px; background: #f6f9f6; border-radius: 16px; border-left: 4px solid #1e3b2e; font-size: 0.95rem; color: #3a5a48; }
.footnote strong { color: #1e3b2e; }
.footnote a { color: #2a6a4a; font-weight: 600; }
.footnote a:hover { text-decoration: underline; }

/* ====== HOTEL / ROOMS ====== */
.hotel-section { background: #edf2ea; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.room-card { background: white; border-radius: 24px; box-shadow: 0 4px 16px rgba(60, 80, 60, 0.05); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(60, 80, 60, 0.10); }
.room-image { width: 100%; height: 180px; position: relative; overflow: hidden; background: #1e3b2e; }
.room-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.room-card:hover .room-image img { transform: scale(1.05); }
.room-image .badge-top { position: absolute; top: 10px; right: 10px; background: #f1c40f; color: #1e3b2e; font-weight: 700; font-size: 0.65rem; padding: 3px 10px; border-radius: 30px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.room-body { padding: 18px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { font-size: 1.1rem; font-weight: 700; color: #1e3b2e; margin-bottom: 4px; }
.room-body .room-desc { font-size: 0.88rem; color: #5a7565; margin-bottom: 10px; }
.room-body .room-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.83rem; color: #3d5a4b; margin-bottom: 12px; }
.room-body .room-meta span { display: flex; align-items: center; gap: 4px; }
.room-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.room-price .amount { font-size: 1.6rem; font-weight: 700; color: #2a7a50; }
.room-price .period { font-size: 0.88rem; color: #5a7565; font-weight: 500; }
.quantity-selector { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; background: #f6f9f6; padding: 7px 12px; border-radius: 40px; border: 1px solid #dce8d8; align-self: flex-start; }
.quantity-selector .qty-label { font-weight: 600; color: #1e3b2e; font-size: 0.88rem; }
.quantity-selector .qty-btn { width: 28px; height: 28px; border-radius: 50%; border: none; background: #1e3b2e; color: white; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.quantity-selector .qty-btn:hover { background: #2a6a4a; }
.quantity-selector .qty-value { font-size: 1rem; font-weight: 700; color: #1e3b2e; min-width: 22px; text-align: center; }
.btn-reserve { display: inline-block; background: #25d366; color: white; font-weight: 600; padding: 11px 22px; border-radius: 60px; text-decoration: none; text-align: center; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; font-size: 0.95rem; margin-top: auto; width: 100%; font-family: 'Quicksand', sans-serif; }
.btn-reserve:hover { background: #1ebe5c; transform: scale(1.02); }

/* ====== BOATS — Premium Rainforest Redesign ====== */
.boats-section {
  background: linear-gradient(160deg, #eaf0e6 0%, #f3efe8 100%);
  position: relative;
}
/* ── Unified Card ── */
.boat-card-unified {
  background: white;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(30, 59, 46, 0.08);
  border: 1px solid rgba(220, 232, 216, 0.5);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.boat-card-unified-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 32px 0;
  margin-bottom: 20px;
}
.boat-card-unified-header .form-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e3b2e, #2a6a4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.boat-card-unified-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3b2e;
  margin-bottom: 2px;
}
.unified-subhead {
  font-size: 0.82rem;
  color: #7a9a88;
  font-weight: 500;
}
.unified-schedule-row {
  padding: 0 32px;
  margin-bottom: 16px;
}
.unified-meta-row {
  padding: 0 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.unified-form-section {
  padding: 0 32px 32px;
}
.unified-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.unified-form-grid .form-group { margin-bottom: 0; }
.unified-form-grid .form-group#boat-return-group,
.unified-form-grid .form-group#boat-passengers-group {
  grid-column: 1 / -1;
}
.unified-form-grid .boat-total-bar { grid-column: 1 / -1; }

/* ── Schedule elements inside unified card ── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.schedule-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(30, 59, 46, 0.06);
  border: 1px solid rgba(220, 232, 216, 0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.schedule-box:hover {
  box-shadow: 0 8px 32px rgba(30, 59, 46, 0.10);
  transform: translateY(-2px);
  border-color: rgba(42, 106, 74, 0.2);
}
.schedule-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1e3b2e;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Interactive time chips */
.boat-time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.boat-time-chips .time-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4eb;
  border: 1.5px solid transparent;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.82rem;
  color: #1e3b2e;
  transition: all 0.25s ease;
  cursor: default;
  min-height: 38px;
  line-height: 1;
}
.boat-time-chips .time-chip:hover {
  background: #dcedd6;
  border-color: #2a6a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 106, 74, 0.15);
}
.boat-time-chips .time-chip .icon-clock {
  font-size: 0.75rem;
  margin-right: 5px;
  opacity: 0.6;
}
/* Notice banner */
.boat-notice {
  background: linear-gradient(135deg, #fef9e7, #fdf2d5);
  border: 1px solid #ead9a8;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #7a6320;
  box-shadow: 0 2px 8px rgba(234, 217, 168, 0.2);
}
.boat-notice .notice-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
/* Price card */
.boat-price-card {
  background: linear-gradient(135deg, #1e3b2e 0%, #296a4a 100%);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 6px 24px rgba(30, 59, 46, 0.15);
  border: none;
}
.boat-price-card:hover { transform: none; box-shadow: 0 6px 24px rgba(30, 59, 46, 0.15); }
.boat-price-card .price-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.boat-price-card .price-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.boat-price-card .price-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ── Form inputs inside unified card ── */
.boat-card-unified #boatBookingForm .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e3b2e;
  font-size: 0.88rem;
}
.boat-form-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(30, 59, 46, 0.08);
  border: 1px solid rgba(220, 232, 216, 0.5);
}
.boat-form-card .form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid #eef4eb;
}
.boat-form-card .form-header .form-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1e3b2e, #2a6a4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.boat-form-card .form-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3b2e;
  margin-bottom: 2px;
}
.boat-form-card .form-header .form-subhead {
  font-size: 0.82rem;
  color: #7a9a88;
  font-weight: 500;
}

/* ── Form field refinements ── */
#boatBookingForm .form-group { margin-bottom: 16px; }
#boatBookingForm label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e3b2e;
  font-size: 0.88rem;
}
#boatBookingForm select,
#boatBookingForm input[type="date"],
#boatBookingForm input[type="number"],
#boatBookingForm input[type="tel"],
#boatBookingForm input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0dfd8;
  border-radius: 12px;
  font-size: 0.92rem;
  background: #fcfcfa;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  font-family: 'Quicksand', sans-serif;
  -webkit-appearance: none;
  appearance: none;
}
#boatBookingForm select:focus,
#boatBookingForm input:focus {
  outline: none;
  border-color: #2a6a4a;
  box-shadow: 0 0 0 3px rgba(42, 106, 74, 0.10);
  background: white;
}
#boatBookingForm select {
  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='%231e3b2e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ── Add-ons ── */
.boat-addons-group {
  background: #f6faf6;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid #dce8d8;
}
.boat-addons-group > label:first-child {
  font-weight: 700;
  color: #1e3b2e;
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: block;
}
.addon-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: #3a5a48;
  border-top: 1px solid #e8f0e8;
  transition: background 0.15s;
  border-radius: 6px;
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
}
.addon-checkbox:first-of-type { border-top: none; }
.addon-checkbox:hover { background: rgba(42, 106, 74, 0.04); }
.addon-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #2a7a50;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.addon-label-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.addon-name {
  font-weight: 500;
  color: #1e3b2e;
  flex: 1;
  min-width: 0;
}
.addon-price {
  font-weight: 700;
  color: #2a7a50;
  white-space: nowrap;
  font-size: 0.9rem;
  background: #eef4eb;
  padding: 2px 10px;
  border-radius: 30px;
}

/* ── Passenger sub-fields ── */
.boat-passenger-fields {
  border: 1px solid #dce8d8;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  background: #fafcfa;
}
.boat-passenger-fields .passenger-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e3b2e;
  margin-bottom: 8px;
  display: block;
}
.boat-passenger-fields input { margin-bottom: 6px; }
.boat-passenger-fields input:last-child { margin-bottom: 0; }
.boat-name-input { margin-bottom: 6px; }

/* ── Pax stepper ── */
.pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #f6f9f6;
  border: 1.5px solid #e0dfd8;
  border-radius: 12px;
  overflow: hidden;
}
.pax-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #1e3b2e;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  line-height: 1;
}
.pax-btn:hover { background: #dce8d8; }
.pax-btn:active { background: #c5d8c0; }
.pax-btn:focus-visible { outline: 2px solid #2a6a4a; outline-offset: -2px; }
.pax-value {
  min-width: 48px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3b2e;
  padding: 0 8px;
  user-select: none;
}


/* ── Room booking modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(30, 59, 46, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(30, 59, 46, 0.25);
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #eef4eb;
  color: #1e3b2e;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: #dce8d8; }
.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid #eef4eb;
}
.modal-header-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e3b2e, #2a6a4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3b2e;
  margin-bottom: 2px;
}
.modal-room-name {
  font-size: 0.88rem;
  color: #2a7a50;
  font-weight: 600;
}
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 18px;
}
.modal-qty {
  display: inline-block;
  background: #eef4eb;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  color: #1e3b2e;
  font-size: 1rem;
}
.modal-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1e3b2e, #296a4a);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(30, 59, 46, 0.12);
}
.modal-total-label { opacity: 0.85; font-weight: 600; font-size: 0.9rem; }
.modal-total-amount { font-size: 1.2rem; }
.modal-guests-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-price-indicator {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a7a50;
  background: #eef4eb;
  padding: 4px 12px;
  border-radius: 30px;
  white-space: nowrap;
}

/* ── Hotel booking layout ── */
.hotel-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.hotel-rooms-col .rooms-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.hotel-rooms-col .room-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
}
.hotel-rooms-col .room-image { height: 100%; min-height: 180px; }
.hotel-rooms-col .room-body { padding: 16px 18px; }
.hotel-rooms-col .room-price .amount { font-size: 1.3rem; }
.hotel-rooms-col .btn-reserve { font-size: 0.85rem; padding: 9px 16px; }
.hotel-form-col { position: sticky; top: 80px; }
.hotel-form-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(30, 59, 46, 0.08);
  border: 1px solid rgba(220, 232, 216, 0.5);
}
.hotel-form-card .form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #eef4eb;
}
.hotel-form-card .form-header .form-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e3b2e, #2a6a4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hotel-form-card .form-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3b2e;
}
.hotel-form-card .form-subhead {
  font-size: 0.8rem;
  color: #7a9a88;
  font-weight: 500;
}
.hotel-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1e3b2e, #296a4a);
  color: white;
  padding: 12px 18px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(30, 59, 46, 0.12);
}
.hotel-total-bar span:first-child { opacity: 0.85; font-weight: 600; }
.hotel-total-bar span:last-child { font-size: 1.1rem; }

/* ── Trust badges ── */
.trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-badge {
  background: #eef4eb;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e3b2e;
  white-space: nowrap;
}
/* ── Total bar ── */
.boat-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1e3b2e 0%, #296a4a 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(30, 59, 46, 0.12);
}
.boat-total-bar span:first-child { opacity: 0.85; font-weight: 600; }
.boat-total-bar span:last-child { font-size: 1.2rem; }

/* ── Submit button ── */
.boat-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #25d366, #1ebe5c);
  color: white;
  font-weight: 700;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  font-family: 'Quicksand', sans-serif;
}
.boat-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #1ebe5c, #19a84f);
}
.boat-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.boat-submit-btn .btn-icon { font-size: 1.2rem; }
.boats-cta { text-align: center; margin-top: 24px; background: white; padding: 24px; border-radius: 24px; box-shadow: 0 4px 16px rgba(60, 80, 60, 0.05); }
.boats-cta p { font-size: 1.2rem; font-weight: 700; color: #1e3b2e; margin-bottom: 12px; }

/* ====== BOOKING FORM ====== */
.booking-section { background: #edf2ea; }
.form-card { background: white; border-radius: 28px; padding: 44px; box-shadow: 0 8px 32px rgba(60, 80, 60, 0.06); max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #1e3b2e; font-size: 0.92rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0dfd8;
  border-radius: 14px;
  font-size: 0.95rem;
  background: #fcfcfa;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Quicksand', sans-serif;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #2a6a4a;
  box-shadow: 0 0 0 3px rgba(42, 106, 74, 0.1);
}
.form-group textarea { min-height: 80px; resize: vertical; }
.btn-submit {
  background: #1e3b2e;
  color: white;
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 60px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  font-family: 'Quicksand', sans-serif;
}
.btn-submit:hover { background: #2a6a4a; transform: translateY(-1px); }

/* ====== CTA ====== */
.cta-section {
  background: #1e3b2e;
  color: white;
  text-align: center;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 20px; opacity: 0.92; }
.cta-features { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-features span { background: #2a6a4a; padding: 8px 20px; border-radius: 40px; font-weight: 600; font-size: 0.9rem; }

.btn-primary {
  display: inline-block;
  background: #25d366;
  color: white;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 60px;
  font-size: 1.1rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  font-family: 'Quicksand', sans-serif;
}
.btn-primary:hover { background: #1ebe5c; transform: scale(1.03); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }

/* ====== CONTACT / FOOTER ====== */
.contact-info { background: #1e3b2e; color: #e8ede6; padding: 48px 0; text-align: center; }
.contact-info a { color: #b8d4b0; font-weight: 500; }
.contact-info .socials { margin-top: 14px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.footer-copy { background: #0f241c; color: #9ab8a3; text-align: center; padding: 24px 0; font-size: 0.88rem; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .tour-accordion { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr 1fr; }
  .tour-accordion { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hotel-layout { grid-template-columns: 1fr; }
  .hotel-form-col { position: static; }
  .hotel-form-card { padding: 24px; }
  .hotel-rooms-col .room-card { grid-template-columns: 1fr; }
  .hotel-rooms-col .room-image { height: 180px; }
  .unified-form-grid { grid-template-columns: 1fr; }
  .boat-card-unified-header { padding: 24px 24px 0; }
  .unified-schedule-row { padding: 0 24px; }
  .unified-meta-row { padding: 0 24px; }
  .unified-form-section { padding: 0 24px 24px; }
  .boat-price-card { padding: 16px 20px; }
  .boat-price-card .price-amount { font-size: 1.1rem; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-box { padding: 16px; }
  .boat-time-chips { gap: 6px; }
  .boat-time-chips .time-chip { padding: 6px 12px; font-size: 0.78rem; min-height: 34px; }
  .tour-video-container { max-height: 280px; }
  .tour-video { max-height: 280px; }
  .info-section { padding: 48px 0; }
  .info-text h2 { font-size: 1.6rem; }
}

@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .tour-accordion { gap: 14px; }
  .tour-item { border-radius: 20px; }
  .tour-header { padding: 14px 16px; }
  .tour-header-left h2 { font-size: 0.92rem; }
  .tour-header-left .meta { font-size: 0.78rem; gap: 4px 8px; }
  .tour-price { font-size: 0.88rem; padding: 3px 10px; }
  .tour-toggle { font-size: 1.3rem; }
  .tour-image { max-height: 150px; }
  .tour-image img { max-height: 150px; }
  .tour-body.open { padding: 0 14px 16px; }
  .tour-body-inner { padding-top: 14px; }
  .tour-body-inner p { font-size: 0.88rem; }
  .tour-body-inner h3 { font-size: 0.95rem; margin: 14px 0 5px; }
  .tour-body-inner ul li { font-size: 0.88rem; }
  .btn-reserva { padding: 10px 20px; font-size: 0.88rem; display: block; text-align: center; }
  .filter-bar { flex-direction: column; align-items: stretch; padding: 16px; gap: 12px; }
  .filter-group { flex-wrap: wrap; justify-content: center; }
  .filter-btn { padding: 8px 14px; font-size: 0.8rem; }
  .filter-label { font-size: 0.83rem; padding: 5px 12px; }
  .price-table { min-width: 560px; font-size: 0.75rem; }
  .price-table thead th { padding: 8px 6px; font-size: 0.7rem; }
  .price-table tbody td { padding: 8px 6px; }
  .package-col { min-width: 120px; }
  .logo { font-size: 1.2rem; }
  nav { gap: 10px; }
  nav a { font-size: 0.83rem; }
  .btn-primary { padding: 14px 28px; font-size: 0.95rem; }
  .boat-submit-btn { padding: 14px 20px; font-size: 0.95rem; }
  .pax-btn { width: 40px; height: 40px; font-size: 1.1rem; }
  .pax-value { min-width: 40px; font-size: 1.05rem; }
  .boat-total-bar { padding: 12px 16px; font-size: 0.92rem; }
  .boat-total-bar span:last-child { font-size: 1.05rem; }
  .boat-card-unified-header { padding: 20px 20px 0; }
  .boat-card-unified-header h3 { font-size: 1rem; }
  .unified-subhead { font-size: 0.78rem; }
  .unified-schedule-row { padding: 0 20px; }
  .unified-meta-row { padding: 0 20px; }
  .unified-form-section { padding: 0 20px 20px; }
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.95rem; margin-bottom: 28px; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .form-card { padding: 24px; }
  .form-group input, .form-group textarea { font-size: 0.88rem; padding: 11px 14px; }
  .tour-video-container { max-height: 200px; }
  .tour-video { max-height: 200px; min-height: 200px; }
  .rooms-grid { grid-template-columns: 1fr; gap: 18px; }
  .room-image { height: 150px; }
  .room-price .amount { font-size: 1.4rem; }
  .quantity-selector { align-self: stretch; justify-content: space-between; }
  .btn-reserve { padding: 12px; }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-features span { font-size: 0.83rem; padding: 6px 14px; }
  .info-text h2 { font-size: 1.4rem; }
}

@media (max-width: 400px) {
  .tour-header { flex-direction: column; align-items: stretch; }
  .tour-header-right { justify-content: space-between; width: 100%; margin-top: 4px; }
  .tour-price { font-size: 0.82rem; }
  .tour-image { max-height: 120px; }
  .tour-image img { max-height: 120px; }
  .filter-btn { padding: 6px 10px; font-size: 0.72rem; }
  .section-title { font-size: 1.4rem; }
  .hero { padding: 48px 0 36px; }
  .btn-primary { padding: 12px 20px; font-size: 0.85rem; }
  .whatsapp-float { padding: 10px 14px; font-size: 0.82rem; bottom: 16px; right: 16px; }
  .info-text h2 { font-size: 1.2rem; }
}
