/* ═══════════════════════════════════════════════════════════════
   SAONA ISLAND TOURS & EXCURSIONS — Punta Cana
   Tropical premium theme
   ═══════════════════════════════════════════════════════════════ */

:root {
  --deep: #07323f;
  --deep-2: #0a4553;
  --teal: #0e7d8a;
  --turq: #14b8c4;
  --turq-soft: #d9f3f5;
  --sand: #f6efe3;
  --cream: #fbf8f1;
  --white: #ffffff;
  --coral: #ff6b4a;
  --coral-dark: #ef5230;
  --gold: #f0b84d;
  --green: #00aa6c;
  --wa: #25d366;
  --ink: #12333d;
  --ink-soft: #4a656e;
  --line: rgba(18, 51, 61, 0.1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(7, 50, 63, 0.08);
  --shadow-md: 0 12px 34px rgba(7, 50, 63, 0.14);
  --shadow-lg: 0 24px 60px rgba(7, 50, 63, 0.22);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.icon { width: 1.25em; height: 1.25em; flex: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container--narrow { width: min(840px, 92%); }

/* ── Typography helpers ── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--turq-soft);
  padding: 0.45em 1.1em;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.eyebrow--light { background: rgba(255, 255, 255, 0.14); color: #9fe8ef; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--sand { background: var(--sand); }
.section--deep { background: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 60%, #0d5a66 100%); color: var(--white); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--teal);
  position: relative;
}
.section--deep .section-title em { color: var(--gold); }
.section-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 58ch; }
.section--deep .section-lead { color: rgba(255, 255, 255, 0.82); }
.section-lead--center { margin-inline: auto; text-align: center; }
.section-lead--center + * { margin-top: 2.5rem; }
.section:not(.about) .eyebrow { display: table; margin-inline: auto; }
.section:not(.about) .section-title { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.9em;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 0.6em 1.4em; font-size: 0.92rem; }
.btn--lg { padding: 1em 2.3em; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(240, 82, 48, 0.38);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(240, 82, 48, 0.46); }
.btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-3px); }
.btn--light { background: var(--white); color: var(--deep); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45); }

/* ── Stars ── */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 1em; height: 1em; fill: var(--gold); }
.stars--green svg { fill: var(--green); width: 1.15em; height: 1.15em; }

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s, box-shadow 0.35s, height 0.35s;
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: 100%; }
.header.is-scrolled {
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  height: 64px;
}

.logo { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--white); }
.header.is-scrolled .logo, .logo--footer { color: var(--ink); }
.logo__mark { border-radius: 10px; box-shadow: 0 4px 10px rgba(7, 50, 63, 0.25); }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__text strong { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: 0.01em; }
.logo__text small { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--white);
  padding: 0.3em 0;
  transition: color 0.25s;
}
.header.is-scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 0.9rem; margin-left: 1rem; }
.nav + .header__actions { margin-left: 0; }

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 3px;
}
.header.is-scrolled .lang-switch { background: rgba(7, 50, 63, 0.06); border-color: var(--line); }
.lang-switch__btn {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35em 0.85em;
  border-radius: 100px;
  color: var(--white);
  transition: background 0.25s, color 0.25s;
}
.header.is-scrolled .lang-switch__btn { color: var(--ink-soft); }
.lang-switch__btn.is-active { background: var(--white); color: var(--deep); }
.header.is-scrolled .lang-switch__btn.is-active { background: var(--teal); color: var(--white); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.burger span {
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.3s var(--ease), opacity 0.2s, background 0.3s;
}
.header.is-scrolled .burger span { background: var(--ink); }
body.menu-open .burger span { background: var(--ink); }
body.menu-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg, .hero__overlay { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__overlay {
  background: linear-gradient(78deg, rgba(7, 50, 63, 0.82) 0%, rgba(7, 50, 63, 0.45) 45%, rgba(7, 50, 63, 0.12) 100%),
              linear-gradient(to top, rgba(7, 50, 63, 0.55) 0%, transparent 30%);
}
.hero__content { position: relative; z-index: 2; padding-top: var(--header-h); max-width: 1180px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  padding: 0.55em 1.2em;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.2vw, 5.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 13ch;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(7, 50, 63, 0.35);
}
.hero__title em { font-style: italic; color: #ffd98a; display: block; }
.hero__subtitle { font-size: clamp(1.02rem, 1.6vw, 1.22rem); max-width: 52ch; color: rgba(255, 255, 255, 0.92); margin-bottom: 2.2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }

/* Hero phone */
.hero__phone {
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(7, 50, 63, 0.4);
  transition: color 0.25s, transform 0.3s var(--ease);
}
.hero__phone-link:hover { color: var(--gold); transform: translateY(-2px); }
.hero__phone-link .icon { width: 1.1em; height: 1.1em; color: var(--gold); }
.hero__phone-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  border-left: 1.5px solid rgba(255, 255, 255, 0.3);
  padding-left: 1.2rem;
}

.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 2.2rem; font-size: 0.95rem; font-weight: 500; }
.hero__trust li { display: flex; align-items: center; gap: 0.55em; }
.hero__trust .stars svg { width: 0.95em; height: 0.95em; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  translate: -50% 0;
  z-index: 2;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  animation: bounce 2.4s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ═══════════ STATS ═══════════ */
.stats { background: var(--deep); color: var(--white); padding: 2.6rem 0; position: relative; z-index: 3; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -0.75rem; top: 15%;
  height: 70%; width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}
.stat__label { font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); }

/* ═══════════ ANNOUNCEMENT ═══════════ */
.announcement {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: linear-gradient(170deg, var(--deep) 0%, var(--deep-2) 50%, var(--teal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.announcement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(20, 184, 196, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.announcement__inner { display: flex; align-items: flex-start; gap: 2rem; position: relative; z-index: 1; }
.announcement__icon {
  flex: none;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 0 0 12px rgba(240, 184, 77, 0.18);
  margin-top: 6px;
}
.announcement__icon svg { width: 28px; height: 28px; }
.announcement__body { flex: 1; }
.announcement__eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.announcement__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.announcement__title em { font-style: italic; color: var(--gold); }
.announcement__title em:last-child { color: #ffd98a; }
.announcement__text {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 72ch;
  margin-bottom: 1.4rem;
}
.announcement__text strong { color: var(--white); }
.announcement__pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.announcement__pills span {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45em 1em;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

@media (max-width: 640px) {
  .announcement__inner { flex-direction: column; align-items: center; text-align: center; }
  .announcement__icon { margin-top: 0; }
  .announcement__pills { justify-content: center; }
}

/* ═══════════ ABOUT ═══════════ */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.about__media::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 55%; height: 55%;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, var(--turq) 0 8px, transparent 8px 16px);
  opacity: 0.28;
  z-index: -1;
}
.about__media-badge {
  position: absolute;
  left: 50%; bottom: 22px;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 0.55em;
  width: max-content;
  max-width: 88%;
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.8em 1.3em;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
}
.about__media-badge .icon { color: var(--gold); }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.8rem; margin-top: 2.4rem; }
.feature { display: flex; gap: 0.95rem; align-items: flex-start; }
.feature__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--turq-soft);
  color: var(--teal);
}
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.2rem; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }

/* ═══════════ TOUR ═══════════ */
.tour__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 3.2rem;
  align-items: start;
}

/* Timeline */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--turq), var(--teal));
  border-radius: 2px;
}
.timeline__item { position: relative; padding-bottom: 2.1rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.2rem; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4.5px solid var(--teal);
  box-shadow: 0 0 0 4px var(--sand);
}
.timeline__time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: 0.55rem;
}
.timeline__body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.timeline__body:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.timeline__body h3 { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; margin-bottom: 0.3rem; }
.timeline__body p { font-size: 0.94rem; color: var(--ink-soft); }

/* Booking card */
.booking-card {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.8rem;
  border-top: 5px solid var(--coral);
}
.booking-card__head { text-align: center; padding-bottom: 1.2rem; border-bottom: 1px dashed var(--line); margin-bottom: 1.2rem; }
.booking-card__from { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-soft); }
.booking-card__price { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--deep); line-height: 1.05; }
.booking-card__price span { font-size: 1.05rem; font-weight: 600; color: var(--ink-soft); }
.booking-card__per { font-size: 0.88rem; color: var(--ink-soft); }
.booking-card__facts { display: grid; gap: 0.75rem; margin-bottom: 1.4rem; }
.booking-card__facts li { display: flex; align-items: center; gap: 0.65em; font-size: 0.93rem; font-weight: 500; }
.booking-card__facts .icon { color: var(--teal); }
.booking-card .btn + .btn { margin-top: 0.7rem; }
.booking-card__note { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* Includes */
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3.5rem; }
.includes__col { border-radius: var(--radius); padding: 1.8rem 2rem; }
.includes__col--yes { background: var(--white); border: 1.5px solid rgba(14, 125, 138, 0.35); }
.includes__col--no { background: rgba(255, 255, 255, 0.55); border: 1.5px dashed rgba(18, 51, 61, 0.22); }
.includes__col h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 1.1rem; }
.includes__col ul { display: grid; gap: 0.65rem; }
.includes__col li { position: relative; padding-left: 1.9rem; font-size: 0.96rem; }
.includes__col li::before {
  position: absolute;
  left: 0; top: 0.1em;
  width: 1.25em; height: 1.25em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72em;
  font-weight: 800;
  line-height: 1.25em;
  text-align: center;
}
.includes__col--yes li::before { content: "✓"; background: var(--turq-soft); color: var(--teal); }
.includes__col--no li::before { content: "✕"; background: rgba(255, 107, 74, 0.14); color: var(--coral-dark); }

/* ═══════════ GALLERY ═══════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.1rem;
  margin-top: 2.8rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  padding: 0;
}
.gallery__item:nth-child(1) { grid-row: span 2; }
.gallery__item:nth-child(4) { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 50, 63, 0.45), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner { position: relative; padding: clamp(5rem, 10vw, 8rem) 0; color: var(--white); text-align: center; overflow: hidden; }
.cta-banner__bg, .cta-banner__overlay { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay { background: linear-gradient(100deg, rgba(7, 50, 63, 0.88), rgba(14, 125, 138, 0.62)); }
.cta-banner__content { position: relative; z-index: 2; max-width: 640px; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 600; margin-bottom: 0.9rem; text-wrap: balance; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; }

/* ═══════════ REVIEWS ═══════════ */
.reviews__widget { display: flex; justify-content: center; margin: 1.6rem 0 1rem; min-height: 40px; }
.reviews__widget .TA_cdsratingsonlynarrow { display: flex; justify-content: center; }
.reviews__ta-more { text-align: center; margin-top: 0.6rem; }
.reviews__ta-link { display: inline-block; margin-top: 0.4rem; font-weight: 600; color: var(--teal); border-bottom: 2px solid var(--turq); transition: color 0.25s; }
.reviews__ta-link:hover { color: var(--deep); }

.slider { position: relative; max-width: 780px; margin: 2.8rem auto 0; overflow: hidden; }
.slider__track { display: flex; transition: transform 0.6s var(--ease); }
.review-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  user-select: none;
}
.review-card .stars { justify-content: center; margin-bottom: 1.1rem; }
.review-card h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; margin-bottom: 0.7rem; }
.review-card p { color: var(--ink-soft); max-width: 56ch; margin-inline: auto; margin-bottom: 1.3rem; }
.review-card footer { font-size: 0.92rem; color: var(--ink-soft); }
.review-card footer strong { color: var(--ink); }

.slider__controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 1.8rem; }
.slider__arrow {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--deep);
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s;
}
.slider__arrow:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.slider__arrow svg { width: 20px; height: 20px; }
.slider__dots { display: flex; gap: 0.55rem; }
.slider__dot { width: 9px; height: 9px; border-radius: 100px; background: rgba(18, 51, 61, 0.2); transition: width 0.35s var(--ease), background 0.25s; }
.slider__dot.is-active { width: 26px; background: var(--teal); }

/* ═══════════ FAQ ═══════════ */
.accordion { margin-top: 2.6rem; display: grid; gap: 0.9rem; }
.accordion__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow 0.3s; }
.accordion__item.is-open { box-shadow: var(--shadow-md); }
.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.03rem;
  padding: 1.15rem 1.4rem;
}
.accordion__chevron { width: 20px; height: 20px; flex: none; color: var(--teal); transition: transform 0.4s var(--ease); }
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.accordion__body p { padding: 0 1.4rem 1.25rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ═══════════ CONTACT ═══════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 3rem;
  align-items: start;
}

.booking-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--deep); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75em 1em;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--turq);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 184, 196, 0.16);
}
.form-field input.is-invalid { border-color: var(--coral-dark); box-shadow: 0 0 0 4px rgba(240, 82, 48, 0.14); }
.form-field textarea { resize: vertical; min-height: 84px; }
.form-field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.booking-form__alt { text-align: center; font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.9rem; }
.booking-form__alt a { font-weight: 600; color: var(--teal); border-bottom: 1.5px solid var(--turq); }

.contact-info { display: grid; gap: 1.4rem; }
.contact-info__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 1.7rem;
}
.contact-info__card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 1.2rem; }
.contact-info__card ul { display: grid; gap: 1.05rem; }
.contact-info__card li > a, .contact-info__card li > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s, transform 0.3s var(--ease);
}
.contact-info__card li > a:hover { background: rgba(255, 255, 255, 0.08); transform: translateX(4px); }
.contact-info__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #9fe8ef;
}
.contact-info__icon svg { width: 21px; height: 21px; }
.contact-info__card small { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6); }
.contact-info__card strong { font-size: 0.98rem; font-weight: 600; word-break: break-word; }
.contact-info__map iframe { border-radius: var(--radius); box-shadow: var(--shadow-md); filter: saturate(1.1); }
.contact-info__map p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin-top: 0.7rem; text-align: center; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--deep); color: rgba(255, 255, 255, 0.78); padding-top: 3.8rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}
.footer .logo { color: var(--white); margin-bottom: 1rem; }
.footer__brand p { font-size: 0.92rem; max-width: 40ch; margin-bottom: 1.4rem; }
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.25s, transform 0.3s var(--ease);
}
.footer__social a:hover { background: var(--turq); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer__col a { display: block; font-size: 0.95rem; padding: 0.28em 0; transition: color 0.25s, transform 0.3s var(--ease); word-break: break-word; }
.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
.footer__col p { font-size: 0.9rem; margin-top: 0.7rem; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 1.3rem 0; }
.footer__bottom .container { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: 0.85rem; }
.footer__domain { color: rgba(255, 255, 255, 0.5); }

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 24, 30, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s;
}
.lightbox.is-visible { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__figure { max-width: min(1080px, 92vw); text-align: center; }
.lightbox__figure img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.lightbox__figure figcaption { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; margin-top: 1rem; }
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.25s, transform 0.3s var(--ease);
}
.lightbox__close:hover { background: var(--coral); transform: rotate(90deg); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.25s;
}
.lightbox__arrow:hover { background: var(--teal); }
.lightbox__arrow svg { width: 24px; height: 24px; }
.lightbox__arrow--prev { left: 18px; }
.lightbox__arrow--next { right: 18px; }

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; margin-inline: auto; }
  .tour__grid { grid-template-columns: 1fr; }
  .booking-card { position: static; max-width: 480px; margin-inline: auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact-info { max-width: 560px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--cream);
    translate: 0 -100%;
    visibility: hidden;
    pointer-events: none;
    transition: translate 0.45s var(--ease), visibility 0s linear 0.45s;
  }
  body.menu-open .nav {
    translate: 0 0;
    visibility: visible;
    pointer-events: auto;
    transition: translate 0.45s var(--ease), visibility 0s;
  }
  .nav__link { color: var(--ink); font-family: var(--font-display); font-size: 1.6rem; }
  .burger { display: flex; position: relative; z-index: 110; }
  .header__cta { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat + .stat::before { display: none; }
  .includes { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  :root { --header-h: 66px; }
  .logo__text small { display: none; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { gap: 0.8rem 1.4rem; font-size: 0.87rem; }
  .features { grid-template-columns: 1fr; }
  .form-row, .form-field--split { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery__item:nth-child(1), .gallery__item:nth-child(4) { grid-row: span 1; }
  .lightbox__arrow { display: none; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .lang-switch__btn { padding: 0.3em 0.7em; }
}
