/*--------------------------------------------------------------
# Paleta de Colores (Inspirada en Yucatán)
--------------------------------------------------------------*/
:root {
  --primary-color: #c06a58;
  /* Terracota */
  --secondary-color: #e7b468;
  /* Textil Amarillo */
  --accent-color: #0077be;
  /* Azul Mar */
  --background-light: #f8f9fa;
  /* Más limpio */
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --primary-color-rgb: 192, 106, 88;
  --font-primary: "Outfit", sans-serif;
  /* Más moderno */
  --font-secondary: "Outfit", sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Glassmorphism Utility */
.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.glass-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1;
}

/*--------------------------------------------------------------
# Estilos Generales
--------------------------------------------------------------*/
body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  background-color: var(--background-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hace que el contenido principal se expanda para empujar el footer hacia abajo */
main {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Navegación
--------------------------------------------------------------*/
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  transition: all 0.3s ease;
  /* Change to all for background transition */
  position: relative;
  /* Needed for bottom border */
  padding: 8px 15px;
  /* Adjust padding for better visual */
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  /* Subtle background */
  border-radius: 5px;
  /* Soften edges */
}

.nav-link.active {
  color: var(--primary-color) !important;
  border-bottom: 3px solid var(--primary-color);
  /* Prominent active indicator */
  padding-bottom: 5px;
  /* Adjust padding for border */
}

/* Dropdown item hover effect */
.dropdown-item:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  /* Subtle background for dropdown hover */
  color: var(--primary-color) !important;
}

/* Cart count badge styling and animation */
#menu-cart-count {
  transition: transform 0.2s ease-in-out;
  display: inline-flex;
  /* To properly center content */
  align-items: center;
  justify-content: center;
  min-width: 20px;
  /* Ensure it's always a circle */
  height: 20px;
  font-size: 0.75em;
  /* Adjust font size */
}

#menu-cart-count:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */
}

/*--------------------------------------------------------------
# Hero Section (Video)
--------------------------------------------------------------*/
.hero-section-video {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
}

.hero-section-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Más contraste */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-content .lead {
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), #a04f16);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(192, 106, 88, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 106, 88, 0.6);
}

.btn-accent {
  background: linear-gradient(45deg, #e5a049, #d8933b);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(229, 160, 73, 0.4);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 160, 73, 0.6);
  color: white;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/*--------------------------------------------------------------
# Secciones de Negocio
--------------------------------------------------------------*/
/* Modern Search Bar */
.search-bar-box {
  border: none;
  padding: 2rem !important;
}

.search-bar-box .input-group {
  background: white;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-bar-box .input-group:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

.search-bar-box .form-select {
  border: none;
  background-color: transparent;
  padding: 12px;
  font-weight: 600;
  color: #555;
  box-shadow: none;
  font-size: 1rem;
}

.search-bar-box .form-select:focus {
  box-shadow: none;
}

.search-bar-box .input-group-text {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: none;
  padding-left: 15px;
}

/* Feature Cards Modern */
.feature-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-number-modern {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(192, 106, 88, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}


/*--------------------------------------------------------------
# Nosotros Page Revamp (Premium/Cinematic)
--------------------------------------------------------------*/

/* Video Hero Section */
.hero-video-container {
  position: relative;
  height: 80vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay for readability */
  z-index: 0;
}

.hero-content-premium {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content-premium h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-content-premium .lead {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 20px;
}

.bento-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-5px);
}

.bento-item.large {
  grid-column: span 8;
}

.bento-item.medium {
  grid-column: span 4;
}

.bento-item.tall {
  grid-row: span 2;
}

.bento-item.image-bg {
  padding: 0;
}

.bento-item.image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-item:hover.image-bg img {
  transform: scale(1.05);
}

.bento-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Dark Premium Section */
.bg-dark-premium {
  background-color: #1a1a1a;
  color: white;
}

.text-gold {
  color: #d4af37;
  /* Gold color */
}

.value-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  /* Subtle gold border */
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.value-card-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .bento-item.large,
  .bento-item.medium {
    grid-column: span 12;
  }

  .hero-content-premium h1 {
    font-size: 2.5rem;
  }
}

/* Section Separators */
.section-separator {
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.02));
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background-color: #fdb446;
}


/* ================================================= */
/* ESTILOS ESPECÍFICOS PARA LA PÁGINA DE TOURS */
/* ================================================= */

/* Transición para las tarjetas de tour */
.tour-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
}

/* Efecto al pasar el mouse (hover): La tarjeta se eleva y la sombra se intensifica */
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Altura fija para la imagen de la tarjeta para una apariencia consistente */
.card-img-top {
  height: 200px;
  object-fit: cover;
  /* Asegura que la imagen cubra el área sin distorsionarse */
}

/* Asegura que el texto ocupe el espacio para que el botón 'Reservar Ahora' se alinee en la parte inferior */
.card-body {
  display: flex;
  flex-direction: column;
}

.card-text.flex-grow-1 {
  flex-grow: 1;
}

/*--------------------------------------------------------------
# Why Travel With Us Section
--------------------------------------------------------------*/
.feature-list .feature-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary-color);
  line-height: 1;
}

.image-composition {
  position: relative;
  min-height: 400px;
}

.main-image {
  width: 70%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.secondary-image {
  width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 1;
  border: 5px solid white;
}

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 3;
  text-align: left;
}

.explore-btn-desktop {
  z-index: 5;
  padding: 0.75rem 2rem;
}

.btn-warning {
  background-color: #e5a049;
  border-color: #e5a049;
}

.btn-warning:hover {
  background-color: #d48f3a;
  border-color: #d48f3a;
}

/* Modern Service Cards */
.service-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
}

.text-primary {
  color: var(--primary-color) !important;
}

/* ================================================= */
/* ESTILOS PARA LA SECCIÓN CON EFECTO PARALLAX */
/* ================================================= */

.parallax-section {
  background-image: url("images/481057270_644816354946338_767851251383671697_n.jpg");
  background-size: cover;
  /* Asegura que la imagen cubra todo el espacio */
  background-position: center;
  /* Centra la imagen */
  background-attachment: fixed;
  /* ESTO es lo que crea el efecto parallax */
  padding-top: 100px;
  /* Espacio superior para el contenido */
  padding-bottom: 100px;
  /* Espacio inferior para el contenido */
  min-height: 500px;
  /* Altura mínima para que la imagen sea visible */
  display: flex;
  /* Para centrar el contenido verticalmente */
  align-items: center;
  /* Centra el contenido verticalmente */
  justify-content: flex-end;
  /* Alinea el contenido a la derecha como en la imagen */
  margin-top: 5rem;
  /* Un poco de margen superior para separarla de la sección anterior */
}

.parallax-section .card {
  background-color: rgba(255,
      255,
      255,
      0.95);
  /* Fondo blanco semitransparente */
  border: none;
  border-radius: 1rem;
  max-width: 500px;
  /* Ancho máximo de la tarjeta */
  margin-right: 2rem;
  /* Margen a la derecha para separarlo del borde */
}

/* Ajustes responsivos para pantallas más pequeñas */
@media (max-width: 991px) {
  .parallax-section {
    justify-content: center;
    /* Centra la tarjeta en pantallas pequeñas */
    padding: 50px 0;
    /* Ajusta el padding */
  }

  .parallax-section .card {
    margin-right: 0;
    /* Elimina el margen derecho en móviles */
    max-width: 90%;
    /* Ancho de la tarjeta en móviles */
  }
}

/* ================================================= */
/* ESTILOS PARA LA SECCIÓN DE TESTIMONIOS */
/* ================================================= */

/* Fondo para la tarjeta de testimonio (color crema/beige de la imagen) */
.testimonial-card {
  background-color: #ffffff;
  /* Cambiado a blanco para más contraste */
  border: none;
  border-left: 8px solid var(--primary-color);
  /* Borde de acento */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Sombra más pronunciada */
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Estilo para la imagen del testimonio */
.testimonial-image {
  max-height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Estilo del texto de la reseña */
.testimonial-text {
  font-size: 1.2rem;
  /* Ligeramente más pequeño para balance */
  line-height: 1.7;
  color: #495057;
  font-style: italic;
}

/* Estilo para la comilla de apertura (opcional, para el diseño) */
.quote-start {
  font-size: 4rem;
  line-height: 0;
  vertical-align: bottom;
  color: var(--secondary-color);
  /* Usando color secundario */
  margin-right: 0.5rem;
  font-weight: 700;
}

/* ================================================= */

/* ESTILOS PARA EL BANNER HERO CON PARALLAX */

/* ================================================= */



.hero-parallax-banner {

  background-image: url("images/RSCN5732.JPG");

  background-attachment: fixed;

  background-size: cover;

  background-position: center;

  min-height: 80vh;
  /* Reducido para no ser tan invasivo */

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  padding: 4rem 0;

}



/* Capa oscura/transparente opcional para que el texto resalte más */

.hero-parallax-banner::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.3);
  /* Un poco más oscuro */

}



/* Estilo de la tarjeta blanca flotante */

.content-card {

  background-color: rgba(255, 255, 255, 0.9);
  /* Fondo blanco con más opacidad */

  backdrop-filter: blur(10px);
  /* Efecto de desenfoque para el fondo */

  padding: 3rem;

  border-radius: 15px;
  /* Bordes más redondeados */

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  /* Sombra más dramática */

  z-index: 10;

  max-width: 600px;

  text-align: center;

}



.text-coral {

  color: var(--primary-color);
  /* Usando el color primario */

}



.btn-link {

  color: var(--text-dark);

  text-decoration: none;

  font-weight: bold;

  transition: color 0.3s;

}



.btn-link:hover {

  color: var(--primary-color);

}



/* Desactivar Parallax en móviles por rendimiento/usabilidad */

@media (max-width: 991px) {

  .hero-parallax-banner {

    background-attachment: scroll;
    /* Vuelve al comportamiento normal */

    min-height: auto;

  }

  .content-card {

    padding: 2rem;

    margin: 0 1rem;

  }

}

/* ================================================= */
/* ESTILOS PARA PÁGINAS DE LOGIN Y REGISTRO          */
/* ================================================= */

/* body para login y registro con fondo degradado */
body.auth-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #a8df9e, #80b07a, #5e8c5e);
  background-size: cover;
  /* Importante: Resetea el color de fondo general para estas páginas */
  background-color: transparent;
}

/* Contenedor principal para login y registro */
.login-container,
.register-container {
  display: flex;
  width: 700px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.7);
}

.login-container {
  height: 400px;
}

.register-container {
  height: 500px;
}

/* Panel izquierdo con imagen */
.left-panel {
  width: 50%;
  background-image: url('../images/RSCN5732.JPG');
  /* URL actualizada */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.logo {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.login-container .logo {
  background-color: transparent;
}

.register-container .logo {
  margin-bottom: 20px;
}

.left-panel p {
  color: white;
  font-size: 16px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Panel derecho con el formulario */
.right-panel {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
}

.register-container .right-panel {
  padding: 20px 40px;
}

.right-panel h2 {
  font-weight: bold;
  color: #333;
  text-align: center;
}

.login-container .right-panel h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.register-container .right-panel h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Estilo de los campos de entrada */
.input-group {
  position: relative;
}

.login-container .input-group {
  margin-bottom: 25px;
}

.register-container .input-group {
  margin-bottom: 15px;
}

.input-group input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f7f7f7;
}

.login-container .input-group i,
.register-container .input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

/* Botones de acción */
.login-btn,
.register-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background-color: #92b963;
  color: white;
  transition: background-color 0.3s;
}

.login-container .login-btn {
  margin-top: 15px;
}

.register-container .register-btn {
  margin-top: 10px;
}

.login-btn:hover,
.register-btn:hover {
  background-color: #7a9a52;
}

/* Mensajes de error y éxito */
.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.success-message {
  color: green;
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* Enlaces */
.forgot-password {
  font-size: 14px;
  text-align: right;
  margin-top: 5px;
}

.forgot-password a {
  color: #5e8c5e;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.login-link a {
  color: #5e8c5e;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE DETALLE DE TOUR      */
/* ================================================= */

.tour-detalle-body {
  background-color: #f8f8f8;
  /* --light-bg */
  color: #333;
  /* --font-color */
}

.text-accent {
  color: #e5a049;
}

/* --accent-color */

.btn-accent {
  background-color: #e5a049;
  /* --accent-color */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-accent:hover {
  background-color: #d8933b;
  color: white;
}

.duration-box {
  background-color: #e5a049;
  /* --accent-color */
  border: 1px solid #e5a049;
  /* --accent-color */
  color: white;
  width: 80px;
  height: 80px;
  padding: 5px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.info-bar .info-icon-box {
  display: flex;
  align-items: center;
  padding-right: 15px;
  border-right: 1px solid #dee2e6;
  margin-right: 15px;
}

.info-bar .info-icon-box:last-child {
  border-right: none;
  margin-right: 0;
}

.info-bar .info-icon-box i {
  font-size: 1.5rem;
  color: #333;
  margin-right: 5px;
}

.sticky-sidebar-content {
  position: sticky;
  top: 20px;
}

.sidebar-price-box {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
}

.related-tour-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  transition: transform 0.2s;
}

.related-tour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-tour-card .card-img-top {
  height: 120px;
  object-fit: cover;
}

.include-list ul {
  list-style: none;
  padding-left: 0;
}

.include-list .bi-check-circle-fill {
  color: #28a745;
}

.include-list .bi-x-circle-fill {
  color: #dc3545;
}

.enquiry-form-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ================================================= */
/* ESTILOS PARA LA GALERÍA DE PRODUCTOS              */
/* ================================================= */

.thumbnail-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.thumbnail-image:hover {
  border-color: var(--primary-color);
}

.thumbnail-image.active {
  border-color: var(--accent-color);
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE CARRITO                 */
/* ================================================= */

.product-img-cart {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE DETALLE DE PAQUETE      */
/* ================================================= */

.package-detail-container {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 50px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero h1,
.hero p,
.hero .cta-button {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #a04f16;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  background-color: #379c94;
  padding: 10px 0;
}

.nav-tabs a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.nav-tabs a:hover {
  background-color: #2c3e50;
}

.package-detail-container section {
  padding: 40px 50px;
  margin-bottom: 20px;
}

.package-detail-container h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.itinerario-dia {
  border-left: 3px solid #34495e;
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
}

.itinerario-dia::before {
  content: '\f28d';
  /* Bootstrap Icon for a circle */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: -12px;
  top: 0;
  background-color: #fff;
  color: #34495e;
  font-size: 1.5rem;
}

.itinerario-dia h3 {
  color: #34495e;
  margin-top: 0;
}

.itinerario-dia p {
  margin: 5px 0;
}

.servicios {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.incluido,
.no-incluido {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
}

@media (min-width: 768px) {

  .incluido,
  .no-incluido {
    width: 48%;
  }
}

.incluido {
  background-color: #e6ffe6;
  border: 1px solid #4CAF50;
}

.no-incluido {
  background-color: #ffe6e6;
  border: 1px solid #F44336;
}

.incluido h3,
.no-incluido h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.incluido h3 .bi,
.no-incluido h3 .bi {
  margin-right: 10px;
  color: #4CAF50;
}

.no-incluido h3 .bi {
  color: #F44336;
}

.incluido ul,
.no-incluido ul {
  list-style-type: none;
  padding-left: 0;
}

.incluido ul li,
.no-incluido ul li {
  margin-bottom: 10px;
}

.blockquote-footer {
  color: #000000;
}

.blockquote-footer .text-muted {
  color: #000000 !important;
}

/* ================================================= */
/* ESTILOS PARA PÁGINAS DE CONTENIDO ESTÁTICO      */
/* ================================================= */

/* Estilos para la página de Políticas de Cancelación y similares */
.container .display-4,
/* Título principal si se usa esta clase */
.container h1.mb-4 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 30px !important;
}

.container h2 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.container .card {
  border: 1px solid #e0e0e0;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.container .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.container .card-title {
  color: var(--primary-color);
  font-weight: 700;
}

.container ul {
  padding-left: 25px;
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE DETALLE DE HOSPEDAJE      */
/* ================================================= */

.hospedaje-detail-page .hospedaje-header h1 {
  color: var(--text-dark);
  font-size: 2.8rem;
}

.hospedaje-detail-page .rating-badge {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.hospedaje-detail-page .rating-badge .fa-star {
  color: #fff;
  margin-right: 5px;
}

.hospedaje-detail-page .carousel-image {
  height: 500px;
  object-fit: cover;
}

.hospedaje-detail-page .hospedaje-section {
  margin-bottom: 3rem;
}

.hospedaje-detail-page .section-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--background-light);
}

.hospedaje-detail-page .service-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hospedaje-detail-page .service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hospedaje-detail-page .service-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.booking-card {
  border: none;
  border-radius: 15px;
}

.booking-card .price-display {
  color: var(--primary-color);
}

.booking-card .price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
}

.booking-card .info-pills .badge {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}

.bg-info-light {
  background-color: #eef7ff !important;
}

.text-info-dark {
  color: #005a8c !important;
}

.booking-card .cta-button {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 700;
  padding: 0.8rem;
  transition: background-color 0.3s, border-color 0.3s;
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE LISTADO DE HOSPEDAJES */
/* ================================================= */

.filter-sidebar {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.hospedaje-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hospedaje-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hospedaje-card .hospedaje-card-img-container {
  position: relative;
}

.hospedaje-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.hospedaje-card .hospedaje-card-badge-type {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hospedaje-card .card-body {
  padding: 1rem;
}

.hospedaje-card .card-title {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.hospedaje-card .hospedaje-card-rating {
  font-weight: 600;
  color: var(--text-dark);
}

.hospedaje-card .hospedaje-card-rating .fa-star {
  color: var(--secondary-color);
}

.hospedaje-card .hospedaje-card-price .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hospedaje-card .hospedaje-card-price .period {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE LISTADO DE ACTIVIDADES */
/* ================================================= */

.activity-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-card .activity-card-img-container {
  position: relative;
}

.activity-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.activity-card .activity-card-badge-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.activity-card .activity-card-badge-duration .bi {
  margin-right: 5px;
}

.activity-card .card-body {
  padding: 1rem;
}

.activity-card .card-title a:hover {
  color: var(--primary-color) !important;
}

.activity-card .activity-card-price .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE DETALLE DE TOUR      */
/* ================================================= */

.tour-detail-page .tour-header {
  margin-bottom: 1.5rem;
}

.tour-detail-page .tour-header .text-primary {
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.tour-carousel-image {
  height: 450px;
  object-fit: cover;
}

.tour-detail-page .section-title {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--background-light);
}

.tour-highlights .highlight-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.tour-description p {
  line-height: 1.7;
  color: #555;
}

.booking-box {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-box .price-display {
  color: var(--primary-color);
  font-weight: 700;
}

.related-tours .activity-card .card-img-top {
  height: 180px;
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE PAQUETES (MODERNIZADO)  */
/* ================================================= */

#package-search {
  border-radius: 30px;
  border-color: var(--primary-color);
  padding-left: 20px;
}

#package-search:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(192, 106, 88, 0.25);
}

.package-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.package-card__image-container {
  height: 220px;
  overflow: hidden;
}

.package-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-card__image {
  transform: scale(1.05);
}

.package-card__title {
  font-family: var(--font-primary);
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.package-card__description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}

.package-card__price {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* ================================================= */
/* ESTILOS PARA LAS TARJETAS DE PRODUCTO (TIENDA)    */
/* ================================================= */

.product-card {
  border-radius: 15px !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.product-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card .card-title {
  font-size: 1.1rem;
}

.product-card .badge {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Animation for fade-in on scroll */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================= */
/* ESTILOS MODERNOS PARA LA SECCIÓN DE TESTIMONIOS   */
/* ================================================= */

.testimonials-section {
  background-color: #f8f9fa;
  /* Un fondo gris muy claro */
}

.testimonial-card-modern {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  margin: 0 auto 2rem;
  max-width: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
}

.testimonial-image-modern {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-color);
}

.testimonial-text-modern {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author-modern h5 {
  font-weight: 700;
  color: var(--text-dark);
}

.stars-modern {
  color: var(--secondary-color);
  margin-top: 1rem;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--secondary-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 1.5rem;
}

/* ================================================= */
/* ESTILOS PARA LA PÁGINA DE ACTIVIDADES (MODERNO) */
/* ================================================= */

/* Sidebar de Filtros */
.filter-sidebar {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-sidebar h4 {
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(192, 106, 88, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.filter-sidebar .form-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.filter-sidebar .form-control,
.filter-sidebar .form-select {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.filter-sidebar .form-control:focus,
.filter-sidebar .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(192, 106, 88, 0.1);
}

/* Tarjetas de Actividades Modernas */
.activity-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.activity-card-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.activity-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card-modern:hover .activity-card-img-container img {
  transform: scale(1.05);
}

.activity-card-badge-duration {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.activity-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.activity-category {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.activity-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.activity-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.activity-title a:hover {
  color: var(--primary-color);
}

.activity-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.activity-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.activity-price .period {
  font-size: 0.85rem;
  color: #999;
}

/* Header de Página Moderno */
.page-header-modern {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
}

.page-header-modern h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* Modern Search Input */
.modern-search-input {
  border: 2px solid #eee;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #333;
  background-color: #fff;
}

.modern-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(192, 106, 88, 0.15);
  outline: none;
}

/* ================================================= */
/* ESTILOS PARA DETALLE DE PAQUETE (MODERNO) */
/* ================================================= */

/* Hero Image Container */
.detail-hero-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.detail-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Modern Tabs */
.modern-tabs {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 2rem;
  gap: 1rem;
}

.modern-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  padding: 1rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.modern-tabs .nav-link:hover {
  color: var(--primary-color);
}

.modern-tabs .nav-link.active {
  color: var(--primary-color);
  background: transparent;
}

.modern-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px 3px 0 0;
}

/* Timeline Moderno */
.modern-timeline {
  position: relative;
  padding-left: 40px;
}

.modern-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f0f0f0;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 1;
}

/* Booking Card Modern */
.booking-card-modern {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}

.booking-price-tag {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.booking-price-tag .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.booking-price-tag .period {
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
}

.info-pill-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  border: 1px solid #eee;
}

.info-pill-modern i {
  color: var(--primary-color);
}

/* Productora Page Styles */
.hero-video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 0;
}

.hero-content-modern {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.portfolio-item-modern {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.portfolio-item-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item-modern:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item-modern:hover .portfolio-overlay {
  opacity: 1;
}

.play-btn-modern {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.play-btn-modern:hover {
  transform: scale(1.1);
}