body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050816;
  color: #f8f9fa;
}

/* Colores principales estilo Caribe */
:root {
  --accent: #22d3ee;
  --accent-soft: #0ea5e9;
  --accent-warm: #fb7185;

}

.text-accent {
  color: var(--accent) !important;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  border: none;
  color: #0f172a;
  font-weight: 600;
}

.btn-accent:hover {
  filter: brightness(1.05);
  color: #020617;
}

/* NAVBAR TRANSPARENTE */
.navbar {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  backdrop-filter: blur(12px);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.navbar-brand span {
  font-size: 1rem;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding-inline: 0.9rem;
  color: #e5e7eb;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--accent);
}

.btn-outline-light.btn-cta {
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* HERO CAROUSEL */
#heroCarousel {
  position: relative;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 100vh;
  min-height: 600px;
}

#heroCarousel .carousel-item {
  transition: transform 1.2s ease-in-out;
}

#heroCarousel img {
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  filter: brightness(0.6);
}

/* OVERLAY GRADIENT PARA TEXTO */
#heroCarousel .gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.35), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(251, 113, 133, 0.3), transparent 55%),
    linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.1) 60%);
  pointer-events: none;
}

/* CAPTION */
.hero-caption {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
}

.hero-caption .inner {
  max-width: 900px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 42rem;
  color: #e5e7eb;
  opacity: 0.95;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
}

.hero-tag {
  font-size: 0.75rem;
  color: #ffffff;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-buttons .btn {
  border-radius: 999px;
  padding-inline: 1.4rem;
}

.hero-buttons .btn+.btn {
  margin-left: 0.5rem;
}

.hero-meta {
  font-size: 0.78rem;
  color: #cbd5f5;
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-meta span i {
  margin-right: 0.35rem;
}

/* ZOOM EFFECT – hero */
.zoom-in {
  animation: zoomIn 18s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.18);
  }
}

/* Indicadores carrusel hero */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
  background-color: var(--accent);
}

/* CONTROLES HERO POR ENCIMA */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  z-index: 20;
  /* más alto que hero-caption (5) y overlays */
}

/* SWIPER – TOURS DESTACADOS */
#tours {
  background-color: #020617;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #f9fafb;
}

.tours-header h3 {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #9ca3af;
}

.tours-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.tours-header p {
  color: #9ca3af;
  max-width: 650px;
  margin: 0.75rem auto 0;
}

.tours-header .tagline {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.4rem;
}

.tours-swiper {
  padding: 2rem 0 3rem;
}

.tours-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}

.tour-card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #020617;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.6s ease;
  z-index: 1;
}

/* Backgrounds específicos para cada tour */
.tour-card-saona::before {
  background-image: url('../img/islasaona.webp');
}

.tour-card-catamaran::before {
  background-image: url('../img/catamaran.png');
}

.tour-card-bibijagua::before {
  background-image: url('../img/playa-bibijagua.jpg');
}

.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(15, 23, 42, 0.96) 0%,
      rgba(15, 23, 42, 0.9) 40%,
      rgba(15, 23, 42, 0.75) 70%,
      rgba(15, 23, 42, 0.55) 100%);
  opacity: 0.9;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.tour-card:hover::after {
  opacity: 1;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
  border-color: rgba(34, 211, 238, 0.8);
}

.tour-card:hover::before {
  transform: scale(1.12);
}

.tour-card-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem 1.7rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f9fafb;
}

.tour-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  backdrop-filter: blur(8px);
}

.tour-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 0.7rem;
  margin-bottom: 0.35rem;
}

.tour-subtitle {
  font-size: 0.9rem;
  color: #e5e7eb;
  max-width: 320px;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-size: 0.88rem;
}

.tour-price {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(34, 211, 238, 0.7);
  font-weight: 600;
  color: #22d3ee;
  backdrop-filter: blur(6px);
}

.tour-price span {
  letter-spacing: 0.18em;
}

.tour-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.18rem;
  text-align: right;
}

.tour-meta small {
  color: #e5e7eb;
  opacity: 0.9;
}

.tour-meta i {
  margin-right: 0.25rem;
  color: #fb7185;
}

.tours-swiper .swiper-pagination-bullet {
  background: rgba(148, 163, 184, 0.6);
  opacity: 1;
}

.tours-swiper .swiper-pagination-bullet-active {
  background: #22d3ee;
}

.tours-swiper .swiper-button-next,
.tours-swiper .swiper-button-prev {
  color: #22d3ee;
}

/* PRECIOS */
#precios {
  background: radial-gradient(circle at top, #22d3ee22, #020617);
  color: #e5e7eb;
  padding: 4rem 0;
}

.precios-header small {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #9ca3af;
}

.precios-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.precios-header p {
  color: #9ca3af;
  max-width: 540px;
  margin: 0.5rem auto 0;
}

.price-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
  font-size: 0.95rem;
}

.price-list li span.label {
  color: #e5e7eb;
}

.price-list li span.price {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* EXPERIENCIAS */
#experiencias {
  padding: 3rem 0;
  background: radial-gradient(circle at top, #22d3ee22, #020617);
  color: #e5e7eb;
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.exp-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.exp-text {
  color: #9ca3af;
  max-width: 680px;
}

/* Wrapper para que el collage llene toda la pantalla */
.exp-collage-wrapper {
  height: 70vh;
  max-height: 650px;
  min-height: 400px;
}

.exp-collage {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
  height: 100%;
}

.exp-collage-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
  height: 100%;
}

.exp-photo-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.exp-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.6s ease;
  display: block;
}

.exp-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.2));
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.8rem 0.9rem;
  font-size: 0.8rem;
  color: #f9fafb;
}

.exp-photo-overlay span {
  opacity: 0.95;
}

.exp-photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 1);
}

.exp-photo-item:hover img {
  transform: scale(1.12);
}

.exp-photo-item:hover .exp-photo-overlay {
  opacity: 1;
}

.exp-photo-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 24px;
}

.exp-collage-right {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

/* RESPONSIVE ajustes */
@media (max-width: 991.98px) {
  .navbar {
    background: rgba(0, 0, 0, 0.9);
  }

  .hero-caption {
    align-items: flex-end;
    padding-bottom: 5rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .tour-card {
    height: 380px;
  }

  .tour-subtitle {
    max-width: 100%;
  }

  .exp-collage-wrapper {
    height: 60vh;
    min-height: 320px;
    max-height: 500px;
  }

  .exp-collage {
    grid-template-columns: 1.4fr 1fr;
  }

  .exp-collage-right-grid {
    gap: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn+.btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero-meta {
    flex-direction: column;
  }

  .tour-card {
    height: 360px;
  }

  #experiencias {
    padding: 2rem 0;
  }

  .exp-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }

  .exp-collage-wrapper {
    height: auto;
    min-height: unset;
    max-height: unset;
  }

  .exp-photo-main {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 250px;
  }

  .exp-collage-right {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .exp-collage-right-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 120px);
    gap: 0.5rem;
  }

  .exp-text {
    max-width: 100%;
  }
}

 [x-cloak] {
    display: none !important;
  }

  #contacto {
    position: relative;
    padding: 4rem 0 4.5rem;
    color: #e5e7eb;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  /* VIDEO DE FONDO */
  #contacto .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }

  #contacto .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.65) saturate(1.3);
    animation: videoZoom 20s ease-in-out infinite alternate;
  }

  @keyframes videoZoom {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      transform: translate(-50%, -50%) scale(1.15);
    }
  }

  /* OVERLAY CON EFECTOS */
  #contacto .video-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.12), transparent 60%),
      radial-gradient(circle at 80% 70%, rgba(251, 113, 133, 0.1), transparent 60%),
      linear-gradient(to bottom, rgba(5, 8, 22, 0.35), rgba(2, 6, 23, 0.45) 50%, rgba(5, 8, 22, 0.55));
    /* backdrop-filter: blur(2px); */
    z-index: 1;
  }

  /* CONTAINER Y CARD SOBRE EL VIDEO */
  #contacto .container {
    position: relative;
    z-index: 2;
  }

  #contacto .contact-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.407);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.3),
      0 20px 60px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(24px) saturate(180%);
    animation: fadeInUp 0.8s ease-out;
    transform: translateZ(0);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #contacto .contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.35),
      0 25px 70px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
  }

  #contacto .section-label {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #9ca3af;
  }

  #contacto .section-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
  }

  #contacto .section-text {
    color: #9ca3af;
    font-size: 0.9rem;
  }

  /* TAGS – TOURS */
  #contacto .tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
  }

  #contacto .tour-tag {
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
    user-select: none;
  }

  #contacto .tour-tag i {
    font-size: 1rem;
    color: #22d3ee;
  }

  #contacto .tour-tag.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #020617;
    font-weight: 600;
    border-color: transparent;
  }

  #contacto .tour-tag.active i {
    color: #020617;
  }

  /* MEDIO DE CONTACTO */
  #contacto .contact-method-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
  }

  #contacto .contact-method {
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
  }

  #contacto .contact-method.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    border-color: transparent;
    color: #020617;
    font-weight: 600;
  }

  #contacto .contact-method i {
    font-size: 1rem;
    color: #22d3ee;
  }

  #contacto .contact-method.active i {
    color: #020617;
  }

  /* CAMPOS Y BOTÓN */
  #contacto .form-label {
    font-size: 0.82rem;
    color: #cbd5f5;
    margin-bottom: 0.3rem;
    font-weight: 500;
  }

  #contacto .form-control {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 14px;
    color: #e5e7eb;
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  #contacto .form-control:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
    outline: none;
  }

  #contacto textarea.form-control {
    min-height: 110px;
    resize: vertical;
  }

  #contacto .form-control::placeholder {
    color: #6b7280;
    font-size: 0.85rem;
  }

  #contacto .btn-submit {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    border: none;
    color: #020617;
    font-weight: 600;
    padding: 0.65rem 1.8rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  #contacto .btn-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }

  #contacto .btn-submit:active {
    transform: translateY(0);
  }

  #contacto small.helper {
    font-size: 0.78rem;
    color: #9ca3af;
  }

  @media (max-width: 991.98px) {
    #contacto {
      min-height: auto;
      padding: 3rem 0;
    }

    #contacto .video-background video {
      filter: brightness(0.55) saturate(1.2);
    }

    #contacto .video-overlay {
      background:
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.1), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(251, 113, 133, 0.08), transparent 60%),
        linear-gradient(to bottom, rgba(5, 8, 22, 0.4), rgba(2, 6, 23, 0.5) 50%, rgba(5, 8, 22, 0.6));
    }
  }

  @media (max-width: 575.98px) {
    #contacto .contact-card {
      padding: 1.8rem 1.4rem;
      border-radius: 20px;
    }

    #contacto {
      padding: 2.5rem 0;
    }

    #contacto .video-background video {
      filter: brightness(0.5) saturate(1.1);
    }

    #contacto .video-overlay {
      background:
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.08), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(251, 113, 133, 0.06), transparent 60%),
        linear-gradient(to bottom, rgba(5, 8, 22, 0.45), rgba(2, 6, 23, 0.55) 50%, rgba(5, 8, 22, 0.65));
    }

    #contacto .section-title {
      font-size: 1.6rem !important;
    }
  }