/**
* Template Name: Tour (Optimized for AlanizCar)
* Modified: AlanizCar Yellow & Black Edition
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables - ALANIZ CAR (Yellow & Black)
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #000000; /* Fondo NEGRO puro */
  --default-color: #b0b0b0;    /* Texto gris claro para lectura */
  --heading-color: #ffffff;    /* Títulos en Blanco puro */
  --accent-color: #FFDD21;     /* AMARILLO (Alaniz Yellow) para botones y enlaces */
  --surface-color: #111111;    /* Gris muy oscuro para tarjetas */
  --contrast-color: #000000;   /* Texto NEGRO sobre el color amarillo (Crucial para leer) */
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: var(--accent-color);
  --nav-mobile-background-color: #000000;
  --nav-dropdown-background-color: #1a1a1a;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: var(--accent-color);
}

/* Color Presets */
.light-background {
  --background-color: #0a0a0a; 
  --surface-color: #1a1a1a;
}

.dark-background {
  --background-color: #000000;
  --default-color: #cccccc;
  --heading-color: #ffffff;
  --surface-color: #111111;
  --contrast-color: #000000; /* Siempre negro sobre acento en tema oscuro */
}

/*--------------------------------------------------------------
# General Styling & Reset
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #fff070; /* Amarillo más claro al pasar el mouse */
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Inputs & Form Elements (Dark Mode) */
input, select, textarea, .form-control, .form-select {
  background-color: #222222 !important;
  color: #ffffff !important;
  border: 1px solid #444444 !important;
}

input::placeholder, textarea::placeholder {
  color: #888888 !important;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 221, 33, 0.25) !important; /* Brillo amarillo */
  outline: none;
}

/* Botones Globales (Fondo Amarillo, Texto Negro) */
.btn-primary, .btn-getstarted {
  background-color: var(--accent-color) !important;
  color: var(--contrast-color) !important; /* Texto Negro */
  border-color: var(--accent-color) !important;
  font-weight: 700;
}

.btn-primary:hover, .btn-getstarted:hover {
  background-color: #ffffff !important; /* Blanco al hover para contraste */
  border-color: #ffffff !important;
  color: #000000 !important; /* Sigue negro */
}

.btn-outline {
  color: var(--accent-color) !important; /* Texto amarillo */
  border: 2px solid var(--accent-color) !important;
  background: transparent;
  font-weight: 600;
}

.btn-outline:hover {
  background-color: var(--accent-color) !important;
  color: var(--contrast-color) !important; /* Texto negro sobre fondo amarillo */
}

/*--------------------------------------------------------------
# PHP Email Form Messages (Corrección de Visibilidad)
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 4px;
}

.php-email-form .sent-message {
  display: none; 
  color: #ffffff;
  background: #059652; /* Verde éxito */
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 4px;
}

.php-email-form .loading {
  display: none; 
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

/* Animación de carga (círculo girando) */
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Iconos Globales */
i.bi {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Preloader & Scroll Top
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: rgba(255, 221, 33, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color); /* Flecha negra */
  line-height: 0;
}

.scroll-top:hover {
  background-color: #ffffff;
  color: #000000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Header & Nav Hover Fixes
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #333;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  padding-left: 5px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .btn-getstarted {
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

/* Fix Hover Blanco en el Header */
.header .btn-getstarted:hover,
.navmenu .btn-getstarted:hover {
  background-color: #ffffff !important; 
  border-color: #ffffff !important;     
  color: #000000 !important;            
}

/* Desktop Nav */
@media (min-width: 1200px) {
  .navmenu ul {
    margin: 0; padding: 0; display: flex; list-style: none; align-items: center;
  }
  .navmenu a {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    transition: 0.3s;
  }
  .navmenu li:hover>a, .navmenu .active {
    color: var(--accent-color);
  }
}

/* Mobile Nav */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    margin-right: 10px;
  }
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #000;
    border: 1px solid #333;
    overflow-y: auto;
    z-index: 9998;
  }
  .navmenu a {
    color: #fff;
    padding: 10px 20px;
    font-size: 17px;
    display: block;
  }
  .navmenu a:hover, .navmenu .active {
    color: var(--accent-color);
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9997;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.travel-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.travel-hero .hero-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}

.travel-hero .hero-background video {
  width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;
}

.travel-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 1;
}

.travel-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 60px;
}

.travel-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.travel-hero .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Buscador Hero */
.travel-hero .booking-form-wrapper .booking-form {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid #333;
}

.travel-hero .booking-form .form-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.travel-hero .booking-form label {
  color: #ddd;
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Quick Links (Accesos Rápidos)
--------------------------------------------------------------*/
.quick-links-section {
  background-color: var(--background-color); 
  padding: 40px 0;
  border-bottom: 1px solid #333; 
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--surface-color); 
  border: 1px solid var(--accent-color);
  padding: 25px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
}

.quick-link-card .icon-box, 
.quick-link-card .icon-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
}

.quick-link-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.quick-link-card p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
}

/* Quick Links Hover: Fondo Amarillo, Texto Negro */
.quick-link-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -10px rgba(255, 221, 33, 0.5);
}

.quick-link-card:hover .icon-box,
.quick-link-card:hover .icon-box i,
.quick-link-card:hover i.bi {
  color: #000000 !important; /* Iconos negros al hover */
}

.quick-link-card:hover h3, 
.quick-link-card:hover p {
  color: #000000 !important; /* Textos negros al hover */
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: rgba(255, 221, 33, 0.1); /* Fondo amarillo muy suave */
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Categorias (Featured Destinations)
--------------------------------------------------------------*/
.featured-destinations .featured-destination {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.featured-destinations .featured-destination img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}

.featured-destinations .featured-destination:hover img {
  transform: scale(1.08);
}

.featured-destinations .featured-destination .destination-overlay {
  position: relative; height: 100%; width: 100%;
}

.featured-destinations .featured-destination .destination-overlay::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.featured-destinations .featured-destination .destination-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; z-index: 2; color: white;
}

.featured-destinations .featured-destination .destination-tag {
  background: var(--accent-color);
  color: var(--contrast-color); /* Letra Negra */
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-destinations .compact-destination {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  height: 180px;
  border: 1px solid #333;
}

.featured-destinations .compact-destination .destination-image {
  width: 140px; position: relative;
}

.featured-destinations .compact-destination .destination-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.featured-destinations .compact-destination .destination-details {
  flex: 1; padding: 20px; display: flex; flex-direction: column; justify-content: space-between;
}

.featured-destinations .compact-destination .stats-row .price {
  color: var(--accent-color);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Inventario (Featured Tours)
--------------------------------------------------------------*/
.featured-tours .tour-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  transition: 0.3s;
  height: 100%;
}

.featured-tours .tour-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
}

.featured-tours .tour-card .tour-image {
  position: relative; height: 250px;
}

.featured-tours .tour-card .tour-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.featured-tours .tour-card .tour-badge {
  position: absolute; top: 15px; left: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color); /* Letra Negra */
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.featured-tours .tour-card .tour-price {
  position: absolute; top: 15px; right: 15px;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.featured-tours .tour-card .tour-content {
  padding: 25px;
}

.featured-tours .tour-card h4 {
  color: #fff; font-size: 20px; font-weight: 700;
}

.featured-tours .tour-content .tour-meta i {
  color: var(--accent-color);
}

.featured-tours .tour-highlights span {
  background-color: rgba(255, 221, 33, 0.1);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 5px;
}

.featured-tours .btn-view-all {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
}

.featured-tours .btn-view-all:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color); /* Letra Negra */
}

/*--------------------------------------------------------------
# Why Us (Standard Layout - Si se usa imagen izquierda)
--------------------------------------------------------------*/
.why-us .content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.why-us .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #aaa;
}

.why-us .stat-item span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Why Us Premium (Grid Layout)
--------------------------------------------------------------*/
.why-us-premium .service-item {
  background-color: #111;
  border: 1px solid #333;
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-us-premium .service-item::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 0; height: 100%;
  background-color: var(--accent-color);
  z-index: -1;
  transition: 0.3s;
}

.why-us-premium .service-item:hover::before {
  width: 100%; /* Se llena de amarillo */
}

.why-us-premium .service-item .icon {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 32px;
  background-color: #222;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  transition: 0.3s;
}

.why-us-premium .service-item:hover .icon {
  background-color: #000; /* Fondo negro para el icono al hover amarillo */
  color: var(--accent-color);
}

.why-us-premium .service-item:hover h3,
.why-us-premium .service-item:hover p {
  color: #000; /* Letras negras para leer sobre el fondo amarillo */
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section .accordion-item {
  background-color: transparent; border: none; margin-bottom: 15px;
}

.faq-section .accordion-button {
  background-color: #111;
  color: #fff;
  font-weight: 600;
  padding: 20px 25px;
  border: 1px solid #333;
  box-shadow: none;
  border-radius: 8px !important;
}

.faq-section .accordion-button .num {
  color: var(--accent-color);
  font-weight: 700;
  margin-right: 15px;
  font-size: 18px;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: var(--contrast-color); /* Letra Negra al abrir */
  border-color: var(--accent-color);
  box-shadow: 0 5px 25px rgba(255, 221, 33, 0.4);
}

.faq-section .accordion-button:not(.collapsed) .num {
  color: var(--contrast-color); /* Numero Negro al abrir */
}

/* Flecha del acordeón */
.faq-section .accordion-button::after {
  filter: invert(1); /* Blanca cerrada */
}
.faq-section .accordion-button:not(.collapsed)::after {
  filter: none; /* Negra abierta sobre amarillo */
}

.faq-section .accordion-body {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 25px;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/*--------------------------------------------------------------
# Testimonials (Swiper) - ACTUALIZADO
--------------------------------------------------------------*/
.testimonials-home .testimonial-item {
  text-align: center;
  margin: 0 15px;
}

/* Caja de texto del testimonio */
.testimonials-home .testimonial-item p {
  font-size: 1.15rem; 
  line-height: 1.6;
  font-style: italic;
  background: #1a1a1a;
  padding: 30px; 
  border-radius: 15px;
  position: relative;
  margin-bottom: 25px;
  color: #e0e0e0; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Triángulo de diálogo abajo de la caja */
.testimonials-home .testimonial-item p::after {
  content: "";
  width: 0; 
  height: 0;
  border-top: 20px solid #1a1a1a;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute; 
  bottom: -20px; 
  left: calc(50% - 20px);
}

/* Nombre del Cliente */
.testimonials-home .testimonial-item h3 {
  font-size: 1.3rem; 
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: #ffffff;
}

/* Subtítulo */
.testimonials-home .testimonial-item h4 {
  font-size: 0.95rem; 
  color: #b0b0b0; 
  font-weight: 400;
  margin: 0;
}

/* Iconos de Facebook */
.testimonials-home .testimonial-item .bi-facebook {
  font-size: 1.2rem;
  margin-right: 5px;
  color: #1877F2; 
}

/* Paginación (Puntitos) */
.testimonials-home .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet {
  background-color: #444;
  width: 12px;
  height: 12px;
  opacity: 1;
  border: 2px solid transparent;
  transition: 0.3s;
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color); 
  border-color: var(--accent-color);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Sección CTA (Fondo Amarillo - Letras Negras)
--------------------------------------------------------------*/
.cta-impact {
  /* Fondo amarillo intenso casi sólido, dejando ver apenitas la foto del auto de fondo */
  background: linear-gradient(rgba(255, 221, 33, 0.95), rgba(255, 221, 33, 0.95)), url("../img/cta-bg.jpg") center/cover fixed;
  padding: 100px 0;
  position: relative;
  /* Bordes negros para separar la sección del resto del sitio oscuro */
  border-top: 3px solid #000000; 
  border-bottom: 3px solid #000000;
}

/* Etiqueta Aprobación Rápida (Fondo Negro, Letra Amarilla) */
.promo-badge-impact {
  background-color: #000000;
  color: var(--accent-color);
  font-weight: 800;
  padding: 8px 25px;
  border-radius: 50px;
  letter-spacing: 2px;
  font-size: 0.95rem;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

/* Título Principal (Negro) */
.cta-title-impact {
  font-size: 4rem; 
  font-weight: 900;
  color: #000000; /* Texto Negro */
  margin: 15px 0 20px 0;
  letter-spacing: -1px;
}

/* Subtítulo (Gris muy oscuro) */
.cta-subtitle-impact {
  font-size: 1.3rem;
  color: #222222; /* Negro suave para fácil lectura */
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Contenedor de Botones */
.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Estructura Base Botones */
.btn-cta-impact {
  padding: 20px 45px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

/* Botón Primario (Fondo Negro sólido, letras Blancas) */
.primary-cta {
  background-color: #000000;
  color: #ffffff !important;
  border: 2px solid #000000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Sombra negra */
}

.primary-cta:hover {
  background-color: #333333; /* Un gris oscuro al pasar el mouse */
  border-color: #333333;
  color: var(--accent-color) !important; /* Las letras se vuelven amarillas al hover */
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Botón Secundario (Transparente con borde Negro) */
.secondary-cta {
  background-color: transparent;
  color: #000000 !important; /* Letras Negras */
  border: 2px solid #000000;
}

.secondary-cta:hover {
  background-color: #000000; /* Se llena de negro */
  color: #ffffff !important; /* Letras se vuelven blancas */
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Enlace de WhatsApp Inferior (Negro) */
.cta-whatsapp .whatsapp-link {
  color: #333333;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.cta-whatsapp .whatsapp-link span {
  color: #000000; /* Número de teléfono negro brillante */
  font-weight: 900;
  font-size: 1.4rem;
}

.cta-whatsapp .whatsapp-link:hover {
  color: #000000;
  transform: scale(1.05); /* Efecto de crecimiento al pasar el mouse */
}

/* Ajustes para Celulares */
@media (max-width: 768px) {
  .cta-title-impact { font-size: 2.5rem; }
  .cta-subtitle-impact { font-size: 1.1rem; }
  .btn-cta-impact { width: 100%; padding: 18px 20px; font-size: 1.1rem; }
  .cta-impact { background-attachment: scroll; padding: 70px 0; }
  .cta-whatsapp .whatsapp-link { flex-direction: column; text-align: center; font-size: 1rem; }
}

/*--------------------------------------------------------------
# Contact Premium
--------------------------------------------------------------*/
.contact-premium { padding-bottom: 80px; }

.contact-box {
  background-color: #1A1A1A;
  padding: 30px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; overflow: hidden; height: 100%;
  border-radius: 4px;
}

.contact-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background-color: var(--accent-color);
}

.contact-box h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #fff;
}

.contact-box .box-icon {
  font-size: 3rem; color: #333; opacity: 0.5; transition: 0.3s;
}

.contact-box:hover .box-icon {
  color: var(--accent-color); /* Icono Amarillo */
  opacity: 1; transform: scale(1.1);
}

.contact-form-container {
  background-color: #111;
  padding: 40px;
  border-radius: 8px;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-premium-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color); /* Letra Negra */
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-premium-submit:hover {
  background-color: #ffffff;
  color: #000;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #bbb;
  background-color: #000;
  border-top: 1px solid #333;
  padding-top: 50px;
}

.footer .footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 12px;
}

.footer .footer-links ul {
  list-style: none; padding: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: var(--accent-color);
}

.footer .footer-links ul a {
  color: #bbb;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid #444;
  font-size: 16px;
  color: #bbb;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  border-top: 1px solid #333;
  padding: 25px 0;
  text-align: center;
}

/* Newsletter Round Style */
.footer .footer-newsletter .newsletter-form {
  border-radius: 50px !important;
  border: 1px solid #333 !important;
  background-color: #111 !important;
  padding: 5px !important;
  display: flex;
  margin-top: 20px;
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: none !important;
  background-color: transparent !important;
  color: #fff !important;
  padding-left: 20px !important;
  width: 100%;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border-radius: 50px !important;
  background-color: var(--accent-color) !important;
  color: var(--contrast-color) !important; /* Letra Negra */
  font-weight: bold !important;
  padding: 10px 25px !important;
  border: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background-color: #fff !important;
}

/* ======================================================
   CORRECCIONES ALTO CONTRASTE Y ENLACES (General)
   ====================================================== */

.contact-info-box .info-content p,
.contact-info-box .info-content a,
.footer-contact p, 
.footer-contact a,
.footer-contact span {
    color: #e0e0e0 !important; 
}

.contact-info-box .info-content h4,
.footer h4 {
    color: #ffffff !important; 
}

a i + span, 
button i + span,
p i + span {
    color: inherit; 
}

a[href^="tel:"], a[href^="mailto:"] {
    color: #ffffff !important;
    text-decoration: none;
}

a[href^="tel:"]:hover, a[href^="mailto:"]:hover {
    color: var(--accent-color) !important;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .travel-hero .hero-title { font-size: 2.2rem; }
  .contact-box { margin-bottom: 20px; }
}

/*--------------------------------------------------------------
# Botón Flotante de WhatsApp
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px; /* Lo ponemos a la izquierda para no estorbar la flecha de subir */
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  z-index: 9999; /* Asegura que siempre esté por encima de todo */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.whatsapp-float i {
  font-size: 32px;
  line-height: 0;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }
  .whatsapp-float i {
    font-size: 28px;
  }
}

/* Gallery Overlay for Inventory */
.tour-image { position: relative; overflow: hidden; }
.gallery-overlay {
  position: absolute; bottom: 10px; left: 10px; background: rgba(0, 0, 0, 0.7);
  color: #fff; padding: 5px 12px; border-radius: 5px; font-size: 0.8rem;
  opacity: 0; transition: 0.3s; pointer-events: none;
}
.tour-card:hover .gallery-overlay { opacity: 1; }
.glightbox:hover { cursor: zoom-in; }

/* ==================================================
   Personalización GLightbox (Galería Premium)
   ================================================== */
.gslide-description {
    background: rgba(0, 0, 0, 0.75) !important; /* Fondo oscuro semi-transparente */
    text-align: center;
    padding: 15px 0 !important;
}

.gslide-title {
    color: var(--accent-color, #f6b60b) !important; /* Amarillo AlanizCar */
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-family: var(--heading-font, 'Roboto', sans-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
}