/* ===============================================
   CITY TOUR CUSCO - CSS ESPECÍFICO
   Hereda variables y estilos base de main.css
   Safe Travel Perú
=============================================== */

/* Este archivo asume que ya tienes cargado main.css con:
   - Variables :root (colores, sombras, gradientes)
   - Reset básico (*, body, html)
   - Botón WhatsApp flotante
   - Animaciones base (fadeInUp, bounce)
*/

/* ===============================================
    DETALLES SECTION - CITY TOUR (V2 PREMIUM)
=============================================== */
.city-tour-page .detalles-v2 {
  padding: 20px 40px 60px;
  background: var(--white);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.city-tour-page .detalles-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.city-tour-page .detalles-content {
  text-align: left;
  animation: fadeInUp 1s ease;
  z-index: 2;
}

.city-tour-page .detalles-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 25px;
  border: 1px solid rgba(46, 204, 113, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.city-tour-page .detalles-badge i {
  color: var(--primary);
}

.city-tour-page .detalles-v2 h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 25px;
}

.city-tour-page .detalles-v2 h2 .highlight {
  color: #ff2d55;
  display: block;
}

.city-tour-page .detalles-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}

.city-tour-page .detalles-lista-v2 {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.city-tour-page .detalles-lista-v2 li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 500;
}

.city-tour-page .detalles-lista-v2 i {
  color: var(--primary);
  font-size: 1.1rem;
}

.city-tour-page .detalles-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.city-tour-page .btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.city-tour-page .btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.city-tour-page .btn-outline-v2 {
  border: 2px solid var(--gray-light);
  color: var(--dark);
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.city-tour-page .btn-outline-v2:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-3px);
}


.city-tour-page .detalles-image-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  animation: fadeInUp 1.2s ease;
}

.city-tour-page .grid-main img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.city-tour-page .grid-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.city-tour-page .grid-item img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.city-tour-page .grid-main:hover img,
.city-tour-page .grid-item:hover img {
  transform: scale(1.02);
}

@media (max-width: 1200px) {
  .city-tour-page .detalles-v2 h2 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .city-tour-page .detalles-v2 {
    padding: 60px 20px;
  }

  .city-tour-page .detalles-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .city-tour-page .detalles-content {
    text-align: center;
  }

  .city-tour-page .detalles-subtitle {
    margin: 0 auto 30px;
  }

  .city-tour-page .detalles-buttons,
  .city-tour-page .detalles-lista-v2 {
    justify-content: center;
  }

  .city-tour-page .detalles-lista-v2 li {
    justify-content: center;
    text-align: center;
  }

  .city-tour-page .detalles-badge {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .city-tour-page .detalles-v2 h2 {
    font-size: 2.2rem;
  }

  .city-tour-page .detalles-image-grid {
    grid-template-columns: 1fr;
  }

  .city-tour-page .grid-side {
    flex-direction: row;
    gap: 15px;
  }

  .city-tour-page .grid-item {
    flex: 1;
  }

  .city-tour-page .grid-main img {
    height: 300px;
    border-radius: 20px;
  }

  .city-tour-page .grid-item img {
    height: 150px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .city-tour-page .detalles-v2 h2 {
    font-size: 1.8rem;
  }

  .city-tour-page .detalles-buttons {
    flex-direction: column;
    width: 100%;
  }

  .city-tour-page .btn-whatsapp,
  .city-tour-page .btn-outline-v2 {
    width: 100%;
    justify-content: center;
    padding: 15px 25px;
  }

  .city-tour-page .grid-side {
    flex-direction: column;
  }

  .city-tour-page .grid-item img {
    height: 200px;
  }
}

.city-tour-page .hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 10px 20px 40px;
}

.city-tour-page .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6) contrast(1.1);
}

.city-tour-page .hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.45);
}

.city-tour-page .hero-content {
  max-width: 1000px;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 2;
}

.city-tour-page .hero-badge {
  display: inline-block;
  background: rgba(243, 156, 18, 0.95);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.city-tour-page .hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}

.city-tour-page .hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  opacity: 1;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.city-tour-page .hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.city-tour-page .hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  min-width: 130px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@supports (backdrop-filter: blur(15px)) {
  .city-tour-page .hero-stats .stat {
    backdrop-filter: blur(15px);
  }
}

.city-tour-page .hero-stats .stat:hover {
  transform: translateY(-5px);
  background: rgba(243, 243, 243, 0.382);
}

.city-tour-page .hero-stats .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 6px;
}

.city-tour-page .hero-stats .stat-label {
  font-size: 0.85rem;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.city-tour-page .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.city-tour-page .btn-primary,
.city-tour-page .btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  min-width: 200px;
  justify-content: center;
}

.city-tour-page .btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.city-tour-page .btn-primary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.city-tour-page .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.city-tour-page .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.city-tour-page .scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 2;
}

.city-tour-page .scroll-indicator i {
  font-size: 1.3rem;
}

.city-tour-page .scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===============================================
   SECCIÓN DETALLES
=============================================== */
.city-tour-page .detalles {
  padding: 100px 40px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.city-tour-page .detalles-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.2;
}

.city-tour-page .detalles-texto p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 35px;
}

.city-tour-page .detalles-lista {
  list-style: none;
  padding: 0;
}

.city-tour-page .detalles-lista li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 15px;
  transition: var(--transition);
  background: #f8f9fa;
  border-left: 4px solid var(--primary);
}

.city-tour-page .detalles-lista li:hover {
  background: rgba(46, 204, 113, 0.1);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.city-tour-page .detalles-lista i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.city-tour-page .detalles-lista span {
  color: var(--dark);
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.05rem;
}

.city-tour-page .detalles-imagen {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.city-tour-page .detalles-imagen img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.city-tour-page .detalles-imagen:hover img {
  transform: scale(1.08);
}

/* ===============================================
   ITINERARIO + RESERVAS (SIN HORAS)
=============================================== */
.city-tour-page .tour-info-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.city-tour-page .itinerario {
  background: var(--white);
  padding: 50px 45px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.city-tour-page .itinerario-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
  padding-bottom: 25px;
  border-bottom: 3px solid var(--primary-light);
}

.city-tour-page .itinerario-header i {
  font-size: 2.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.city-tour-page .itinerario-header h2 {
  font-size: 2.2rem;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 5px;
}

.city-tour-page .itinerario-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  font-weight: 400;
}

/* Lista de itinerario SIN línea de tiempo ni horas */
.city-tour-page .itinerario-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Eliminamos la pseudo línea vertical */
.city-tour-page .itinerario-timeline::before {
  display: none;
}

.city-tour-page .itinerario-timeline li {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  position: relative;
}

/* Ocultamos completamente el marcador de hora (círculo con la hora) */
.city-tour-page .time-marker {
  display: none;
}

/* Ajustamos el contenido para que ocupe todo el ancho sin la hora */
.city-tour-page .time-content {
  flex: 1;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 25px 30px;
  border-radius: 15px;
  border-left: 5px solid var(--primary);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* Eliminamos cualquier margen izquierdo que pudiera quedar */
  margin-left: 0;
}

.city-tour-page .time-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  background: var(--white);
}

.city-tour-page .time-content h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}

/* El título h4 ya no mostrará la hora (solo el nombre del lugar/actividad) */
.city-tour-page .time-content p {
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* ===============================================
   FORMULARIO DE RESERVAS
=============================================== */
.city-tour-page .reservas {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.city-tour-page .reservas-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 3px solid var(--light);
}

.city-tour-page .reservas-header i {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.city-tour-page .reservas-header h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 800;
}

/* Precio Dual - USD y PEN */
.city-tour-page .price-dual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.city-tour-page .price-usd,
.city-tour-page .price-pen {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.city-tour-page .price-usd {
  color: var(--primary);
}

.city-tour-page .price-pen {
  color: var(--secondary);
}

.city-tour-page .price-dual .currency-symbol {
  font-size: 2rem;
  font-weight: 700;
}

.city-tour-page .price-dual .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.city-tour-page .price-dual .currency-code {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
}

.city-tour-page .price-separator {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gray-light);
  margin: 0 5px;
}

.city-tour-page .price-note {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.city-tour-page .price-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}

.city-tour-page .price-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.city-tour-page .price-features i {
  color: var(--primary);
  font-size: 1rem;
}

.city-tour-page .reserva-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.city-tour-page .form-group {
  display: flex;
  flex-direction: column;
}

.city-tour-page .form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.city-tour-page .form-group label i {
  color: var(--primary);
  font-size: 1rem;
  width: 18px;
}

.city-tour-page .form-group input,
.city-tour-page .form-group select,
.city-tour-page .form-group textarea {
  padding: 15px 18px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
}

.city-tour-page .form-group input:focus,
.city-tour-page .form-group select:focus,
.city-tour-page .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15);
  background: var(--white);
}

.city-tour-page .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.city-tour-page .cta-button {
  padding: 20px 30px;
  border: none;
  border-radius: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

.city-tour-page .cta-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.city-tour-page .cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.6);
}

.city-tour-page .form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid var(--light);
}

.city-tour-page .form-footer p {
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.city-tour-page .form-footer i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ===============================================
   GALERÍA CON CARRUSEL
=============================================== */
.city-tour-page .galeria-tour {
  padding: 20px 40px 100px;
  background: var(--white);
}

.city-tour-page .tours-relacionados {
  padding-top: 20px;
}

.city-tour-page .mountain-icon-wrapper {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease;
}

.city-tour-page .mountain-icon-main {
  filter: drop-shadow(0 5px 10px rgba(46, 204, 113, 0.15));
  margin-top: 0;
}

.city-tour-page .galeria-tour .section-header,
.city-tour-page .tours-relacionados .section-header {
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.city-tour-page .section-header h2 {
  margin-top: 0;
}

.city-tour-page .carrusel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.city-tour-page .carrusel-nav {
  display: none;
}

.city-tour-page .carrusel-counter {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(15px)) {
  .city-tour-page .carrusel-counter {
    backdrop-filter: blur(15px);
  }
}

.city-tour-page .carrusel-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 550px;
}

.city-tour-page .carrusel-slide {
  min-width: 100%;
  position: relative;
}

.city-tour-page .carrusel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-tour-page .carrusel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--white);
  padding: 60px 40px 35px;
}

.city-tour-page .carrusel-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.city-tour-page .carrusel-info p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
  line-height: 1.6;
}

.city-tour-page .carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.city-tour-page .carrusel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.city-tour-page .carrusel-prev {
  left: 25px;
}

.city-tour-page .carrusel-next {
  right: 25px;
}

.city-tour-page .carrusel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.city-tour-page .carrusel-dots label {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.city-tour-page .carrusel-dots label:hover {
  background: rgba(255, 255, 255, 0.8);
}

.city-tour-page #slide1:checked~.carrusel-dots label[for="slide1"],
.city-tour-page #slide2:checked~.carrusel-dots label[for="slide2"],
.city-tour-page #slide3:checked~.carrusel-dots label[for="slide3"],
.city-tour-page #slide4:checked~.carrusel-dots label[for="slide4"],
.city-tour-page #slide5:checked~.carrusel-dots label[for="slide5"] {
  background: var(--white);
  transform: scale(1.3);
}

.city-tour-page #slide1:checked~.carrusel-slides {
  transform: translateX(0%);
}

.city-tour-page #slide2:checked~.carrusel-slides {
  transform: translateX(-100%);
}

.city-tour-page #slide3:checked~.carrusel-slides {
  transform: translateX(-200%);
}

.city-tour-page #slide4:checked~.carrusel-slides {
  transform: translateX(-300%);
}

.city-tour-page #slide5:checked~.carrusel-slides {
  transform: translateX(-400%);
}

/* ===============================================
   TOURS RELACIONADOS - HEREDA DEL MAIN.CSS
=============================================== */
.city-tour-page .tours-relacionados {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Las tarjetas heredan las clases globales del main.css:
   - .tours-grid
   - .tour-card
   - .tour-image-container
   - .tour-overlay
   - .tour-label
   - .tour-price
   - .tour-info
   - .tour-rating
   - .tour-highlights
   - .tour-details
   - .tour-actions
   - .btn-tour
   - .btn-book
*/

/* Ajustes de margen para tours relacionados */
.city-tour-page .tours-grid {
  gap: 50px;
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive margen */
@media (max-width: 1024px) {
  .city-tour-page .tours-grid {
    gap: 45px;
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .city-tour-page .tours-grid {
    gap: 40px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .city-tour-page .tours-grid {
    gap: 30px;
    padding: 0 10px;
  }

  /* ===============================================
   RESPONSIVE ESPECÍFICO - CONTENIDO MUY ARRIBA (VERSIÓN EXTREMA)
=============================================== */

  @media (max-width: 1024px) {
    .city-tour-page .detalles {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 60px 20px;
    }

    .city-tour-page .tour-info-section {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .city-tour-page .reservas {
      position: static;
    }

    /* AGREGADO: Ajustes del hero para tablet - MUY ARRIBA */
    .city-tour-page .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 0.8rem;
    }

    .city-tour-page .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .city-tour-page .hero-stats {
      gap: 20px;
    }
  }

  @media (max-width: 768px) {

    /* ===============================================
     HEADER CON HORA Y LOGO - RESPONSIVE (MUY ARRIBA)
  ================================================ */
    .city-tour-page .hero-header {
      position: absolute;
      top: 8px;
      /* MUY ARRIBA */
      left: 10px;
      right: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    .city-tour-page .time-display {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--white);
      background: rgba(0, 0, 0, 0.3);
      padding: 5px 10px;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .city-tour-page .logo-lang-wrapper {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 0, 0, 0.3);
      padding: 5px 10px;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .city-tour-page .logo-text {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.3px;
    }

    .city-tour-page .language-selector {
      background: transparent;
      color: var(--white);
      border: none;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* ===============================================
     HERO PRINCIPAL - RESPONSIVE (MUY ARRIBA)
  ================================================ */
    .city-tour-page .hero {
      height: auto;
      min-height: 400px;
      /* MUCHO MENOS ALTURA */
      padding: 50px 15px 30px;
      /* MUCHO MENOS PADDING ARRIBA */
    }

    .city-tour-page .hero-content {
      margin-top: 10px;
      /* CASI NADA DE MARGEN */
    }

    .city-tour-page .hero h1 {
      font-size: 2rem;
      margin-bottom: 0.8rem;
    }

    .city-tour-page .hero-subtitle {
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .city-tour-page .hero-stats .stat {
      width: auto;
      max-width: fit-content;
      min-width: auto;
      padding: 10px 16px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .city-tour-page .hero-stats .stat {
      width: auto;
      max-width: fit-content;
      min-width: auto;
      padding: 10px 16px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .city-tour-page .hero-stats .stat-number {
      font-size: 1.4rem;
    }

    .city-tour-page .hero-stats .stat-label {
      font-size: 0.75rem;
      line-height: 1.3;
    }

    /* Botones en columna */
    .city-tour-page .hero-buttons {
      flex-direction: column;
      gap: 8px;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .city-tour-page .btn-primary,
    .city-tour-page .btn-secondary {
      width: 95%;
      max-width: 280px;
      min-width: auto;
      padding: 10px 16px;
      font-size: 0.85rem;
    }

    .city-tour-page .hero-badge {
      font-size: 10px;
      padding: 5px 12px;
      margin-bottom: 8px;
    }

    /* ===============================================
     "LOCALHOST" ABAJO A LA DERECHA - MUY ARRIBA
  ================================================ */
    .city-tour-page .local-display {
      position: absolute;
      bottom: 15px;
      /* MUY ARRIBA */
      right: 15px;
      color: var(--white);
      background: rgba(0, 0, 0, 0.3);
      padding: 5px 10px;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-family: 'Courier New', monospace;
      font-size: 0.7rem;
      font-weight: 600;
    }

    /* ===============================================
     SCROLL INDICATOR - MUY ARRIBA
  ================================================ */
    .city-tour-page .scroll-indicator {
      bottom: 10px;
      /* MUY ARRIBA */
      left: 50%;
      transform: translateX(-50%);
    }

    .city-tour-page .scroll-indicator i {
      font-size: 1rem;
    }

    .city-tour-page .scroll-indicator span {
      font-size: 0.6rem;
    }

    /* ===============================================
     RESTO DE SECCIONES (COMPACTAS)
  ================================================ */
    .city-tour-page .detalles {
      padding: 40px 15px;
    }

    .city-tour-page .detalles-texto h2 {
      font-size: 1.8rem;
    }

    .city-tour-page .detalles-imagen img {
      height: 350px;
    }

    .city-tour-page .tour-info-section {
      padding: 40px 15px;
    }

    .city-tour-page .itinerario {
      padding: 25px 15px;
    }

    .city-tour-page .itinerario-header h2 {
      font-size: 1.6rem;
    }

    .city-tour-page .itinerario-timeline::before {
      left: 25px;
    }

    .city-tour-page .time-marker {
      width: 50px;
      height: 50px;
      font-size: 0.75rem;
    }

    .city-tour-page .carrusel-slides {
      height: 350px;
    }

    .city-tour-page .carrusel-btn {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }

    .city-tour-page .carrusel-prev {
      left: 10px;
    }

    .city-tour-page .carrusel-next {
      right: 10px;
    }

    .city-tour-page .galeria-tour,
    .city-tour-page .tours-relacionados {
      padding: 40px 15px;
    }
  }

  @media (max-width: 480px) {

    /* ===============================================
     HEADER CON HORA Y LOGO - MÓVIL PEQUEÑO (MUY ARRIBA)
  ================================================ */
    .city-tour-page .hero-header {
      top: 5px;
      /* EXTREMADAMENTE ARRIBA */
      left: 8px;
      right: 8px;
      flex-direction: column;
      gap: 6px;
      align-items: stretch;
    }

    .city-tour-page .time-display {
      align-self: flex-start;
      font-size: 0.7rem;
      padding: 4px 8px;
    }

    .city-tour-page .logo-lang-wrapper {
      align-self: flex-end;
      padding: 4px 8px;
      gap: 6px;
    }

    .city-tour-page .logo-text {
      font-size: 0.75rem;
    }

    .city-tour-page .language-selector {
      font-size: 0.7rem;
    }

    /* ===============================================
     HERO PRINCIPAL - MÓVIL PEQUEÑO (MUY ARRIBA)
  ================================================ */
    .city-tour-page .hero {
      min-height: 380px;
      /* MUY COMPACTO */
      padding: 40px 10px 25px;
      /* CASI NADA DE PADDING SUPERIOR */
    }

    .city-tour-page .hero-content {
      margin-top: 5px;
      /* MÍNIMO MARGEN */
    }

    .city-tour-page .hero h1 {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }

    .city-tour-page .hero-subtitle {
      font-size: 0.85rem;
      margin-bottom: 0.8rem;
    }

    .city-tour-page .hero-badge {
      font-size: 9px;
      padding: 4px 10px;
      margin-bottom: 6px;
    }

    .city-tour-page .hero-stats {
      gap: 8px;
      margin-bottom: 1rem;
    }

    .city-tour-page .hero-stats .stat {
      width: 95%;
      padding: 10px;
    }

    .city-tour-page .hero-stats .stat-number {
      font-size: 1.2rem;
    }

    .city-tour-page .hero-stats .stat-label {
      font-size: 0.7rem;
    }

    .city-tour-page .hero-buttons {
      gap: 6px;
      margin-bottom: 1.2rem;
    }

    .city-tour-page .btn-primary,
    .city-tour-page .btn-secondary {
      width: 98%;
      padding: 8px 14px;
      font-size: 0.8rem;
    }

    /* ===============================================
     "LOCALHOST" ABAJO A LA DERECHA - MUY ARRIBA
  ================================================ */
    .city-tour-page .local-display {
      bottom: 12px;
      /* CASI PEGADO AL BORDE */
      right: 10px;
      padding: 4px 8px;
      font-size: 0.65rem;
    }

    /* ===============================================
     SCROLL INDICATOR - MUY ARRIBA
  ================================================ */
    .city-tour-page .scroll-indicator {
      bottom: 8px;
      /* CASI PEGADO AL BORDE */
    }

    .city-tour-page .scroll-indicator i {
      font-size: 0.9rem;
    }

    .city-tour-page .scroll-indicator span {
      font-size: 0.55rem;
    }

    /* ===============================================
     RESTO DE SECCIONES (MUY COMPACTAS)
  ================================================ */
    .city-tour-page .detalles {
      padding: 30px 10px;
      gap: 25px;
    }

    .city-tour-page .detalles-texto h2 {
      font-size: 1.4rem;
    }

    .city-tour-page .detalles-texto p {
      font-size: 0.85rem;
    }

    .city-tour-page .detalles-lista li {
      padding: 10px;
    }

    .city-tour-page .detalles-imagen img {
      height: 280px;
    }

    .city-tour-page .tour-info-section {
      padding: 30px 10px;
    }

    .city-tour-page .itinerario {
      padding: 20px 10px;
    }

    .city-tour-page .itinerario-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .city-tour-page .itinerario-header h2 {
      font-size: 1.2rem;
    }

    .city-tour-page .itinerario-subtitle {
      font-size: 0.85rem;
    }

    .city-tour-page .itinerario-timeline li {
      flex-direction: column;
      gap: 15px;
    }

    .city-tour-page .itinerario-timeline::before {
      left: 25px;
    }

    .city-tour-page .time-marker {
      width: 45px;
      height: 45px;
      align-self: flex-start;
    }

    .city-tour-page .time-content h4 {
      font-size: 1rem;
    }

    .city-tour-page .time-content p {
      font-size: 0.8rem;
    }

    .city-tour-page .reservas {
      padding: 25px 15px;
    }

    .city-tour-page .reservas-header h2 {
      font-size: 1.3rem;
    }

    .city-tour-page .price-dual .amount {
      font-size: 2.2rem;
    }

    .city-tour-page .price-dual .currency-symbol {
      font-size: 1.4rem;
    }

    .city-tour-page .price-dual .currency-code {
      font-size: 0.85rem;
    }

    .city-tour-page .price-separator {
      font-size: 1.8rem;
    }

    .city-tour-page .price-features {
      grid-template-columns: 1fr;
      gap: 6px;
    }

    .city-tour-page .form-group input,
    .city-tour-page .form-group select,
    .city-tour-page .form-group textarea {
      padding: 8px 12px;
      font-size: 0.85rem;
    }

    .city-tour-page .cta-button {
      padding: 12px 18px;
      font-size: 0.85rem;
    }

    .city-tour-page .galeria-tour,
    .city-tour-page .tours-relacionados {
      padding: 30px 10px;
    }

    .city-tour-page .carrusel-slides {
      height: 250px;
    }

    .city-tour-page .carrusel-info {
      padding: 25px 15px 15px;
    }

    .city-tour-page .carrusel-info h3 {
      font-size: 1.1rem;
    }

    .city-tour-page .carrusel-info p {
      font-size: 0.8rem;
    }

    .city-tour-page .carrusel-btn {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }

    .city-tour-page .carrusel-prev {
      left: 8px;
    }

    .city-tour-page .carrusel-next {
      right: 8px;
    }

    .city-tour-page .carrusel-counter {
      top: 10px;
      right: 10px;
      padding: 4px 8px;
      font-size: 0.7rem;
    }
  }

  @media (max-width: 360px) {

    /* ===============================================
     HEADER CON HORA Y LOGO - MÓVIL MUY PEQUEÑO (EXTREMADAMENTE ARRIBA)
  ================================================ */
    .city-tour-page .hero-header {
      top: 4px;
      left: 6px;
      right: 6px;
    }

    .city-tour-page .time-display {
      font-size: 0.65rem;
      padding: 3px 6px;
    }

    .city-tour-page .logo-lang-wrapper {
      padding: 3px 6px;
    }

    .city-tour-page .logo-text {
      font-size: 0.7rem;
    }

    /* ===============================================
     HERO PRINCIPAL - MÓVIL MUY PEQUEÑO (EXTREMADAMENTE ARRIBA)
  ================================================ */
    .city-tour-page .hero {
      min-height: 350px;
      /* MÍNIMA ALTURA POSIBLE */
      padding: 35px 8px 20px;
      /* MÍNIMO PADDING SUPERIOR */
    }

    .city-tour-page .hero h1 {
      font-size: 1.4rem;
    }

    .city-tour-page .hero-subtitle {
      font-size: 0.8rem;
    }

    .city-tour-page .hero-badge {
      font-size: 8px;
      padding: 3px 8px;
      margin-bottom: 4px;
    }

    .city-tour-page .hero-stats .stat {
      min-width: 70px;
      padding: 8px;
    }

    .city-tour-page .hero-stats .stat-number {
      font-size: 1.1rem;
    }



    /* ===============================================
     SCROLL INDICATOR - EXTREMADAMENTE ARRIBA
  ================================================ */
    .city-tour-page .scroll-indicator {
      bottom: 6px;
      /* PEGADO AL BORDE */
    }

    /* ===============================================
     RESTO DE SECCIONES (MINIMALISTAS)
  ================================================ */
    .city-tour-page .detalles-texto h2 {
      font-size: 1.2rem;
    }

    .city-tour-page .carrusel-slides {
      height: 220px;
    }

    .city-tour-page .price {
      font-size: 1.8rem;
    }
  }
}

/* ===============================================
   PREMIUM TOUR CARDS (RELATED ADVENTURES)
=============================================== */
.tours-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.tour-card-premium {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card-premium:hover .card-image-box img {
  transform: scale(1.1);
}

.location-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #e8f8f0;
  color: #2ecc71;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}

.card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-content p {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #555;
}

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.pill-badge {
  background: #e8f8f0;
  color: #2ecc71;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-footer-premium {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.price-box-premium {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-box-premium .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2ecc71;
}

.price-box-premium .amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2ecc71;
}

.price-box-premium .suffix {
  font-size: 0.75rem;
  color: #888;
  margin-left: 4px;
}

.btn-premium-details {
  background: #d4c4a1;
  color: #5c4b37;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.btn-premium-details:hover {
  background: #c5b48f;
}

@media (max-width: 992px) {
  .tours-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tours-grid-premium {
    grid-template-columns: 1fr;
  }
}

.card-rating-premium {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}

.card-rating-premium i {
  color: #f1c40f;
  font-size: 0.85rem;
}

.card-rating-premium .rating-count {
  font-size: 0.75rem;
  color: #888;
  margin-left: 5px;
  font-weight: 600;
}

/* Ajustes para que las cartas premium funcionen en el carrusel del index */
.tours-carousel .tour-card-premium {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  margin: 0;
}

@media (max-width: 768px) {
  .tours-carousel .tour-card-premium {
    flex: 0 0 calc(100% - 10px);
    min-width: calc(100% - 10px);
  }
}