/* --- SECCIÓN HERO --- */
.hero-luxury-zone {
    width: 100%;
    position: relative;
    padding: 120px 0;
    background-color: #000;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: block; /* Aseguramos que se comporte como bloque */
}

/* --- DIV QUE DEBE CENTRARSE --- */
.container-luxury {
    max-width: 1200px; /* O el ancho que uses en tu web */
    margin: 0 auto;    /* Esto es lo que centra el div */
    padding: 0 20px;   /* Margen interno de seguridad para móviles */
}

/* --- ESTRUCTURA INTERNA --- */
.hero-flex {
    display: flex;
    justify-content: flex-start; /* Contenido a la izquierda dentro del centro */
    align-items: center;
}

.hero-content-main {
    max-width: 650px; /* Controla el ancho del texto */
    text-align: left;
}

/* --- ESTILOS DE MARCA --- */
.hero-badge {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid #007aff; /* Azul de tu logo */
    color: #007aff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero-content-main h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-lsi-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-lsi-features li {
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.hero-lsi-features li i {
    color: #26a65b; /* Verde de tu logo */
    margin-right: 8px;
}

/* BOTÓN VERDE */
.btn-hero-primary {
    display: inline-block;
    background-color: #26a65b;
    color: #fff;
    padding: 18px 35px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-hero-primary:hover {
    background-color: #007aff; /* Cambio a Azul en hover */
    transform: translateY(-3px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-content-main {
        text-align: center;
        margin: 0 auto;
    }
    .hero-flex {
        justify-content: center;
    }
    .hero-lsi-features {
        justify-content: center;
    }
    .hero-content-main h1 {
        font-size: 2.2rem;
    }
}


/* --- SECCIÓN INTRODUCCIÓN Y RESERVAS --- */
.luxury-intro-section {
    padding: 80px 0;
    background-color: #ffffff; /* Fondo claro para contraste con el Hero */
}

.intro-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 50px;
    align-items: center;
}

/* Columna de Texto */
.intro-content-col {
    text-align: left;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
}

/* Detalle visual: línea verde de marca bajo el título */
.section-title-dark::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #26a65b; /* Tu Verde */
    margin-top: 15px;
}

.intro-text-wrapper p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Columna del Iframe */
.intro-iframe-col {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.intro-iframe-col iframe {
    border-radius: 4px;
    display: block;
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .intro-grid-wrapper {
        gap: 30px;
    }
    .section-title-dark {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .luxury-intro-section {
        padding: 60px 0;
    }
    
    .intro-grid-wrapper {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        gap: 40px;
    }
    
    .intro-content-col {
        text-align: center;
    }
    
    .section-title-dark::after {
        margin: 15px auto 0 auto; /* Centrar línea en móvil */
    }
    
    .intro-iframe-col {
        order: -1; /* Opcional: poner el formulario arriba en móvil para conversión */
    }
}


/* --- SECCIÓN SERVICIOS: STANDARD vs SUBURBAN --- */
.luxury-services-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 40px;
}

/* Tarjeta de Servicio */
.service-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #007aff; /* Cambio sutil al azul de marca */
}

/* Contenedor de Imagen */
.service-image {
    width: 100%;
    height: auto;
    background-color: #f4f4f4;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    padding: 20px; /* Espacio para que luzca el render del vehículo */
}

/* Contenido de la Tarjeta */
.service-info {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.service-tagline {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #26a65b; /* Verde de marca */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .services-grid {
        gap: 30px;
    }
    .service-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .luxury-services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
        gap: 40px;
    }
    
    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-info {
        text-align: center;
        padding: 25px;
    }
}


/* --- SECCIÓN PRECIOS CON PSICOLOGÍA DE CONVERSIÓN --- */
.pricing-conversion-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta Principal */
.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #26a65b;
}

/* Cabecera de la Tarjeta */
.card-vehicle-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.card-vehicle-head h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #111;
    margin: 0;
}

/* Badge de Descuento */
.badge-promo {
    background-color: #26a65b; /* Verde de marca */
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Cajas de Precio */
.price-box-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.price-box {
    padding: 20px;
    border-radius: 10px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    position: relative;
}

.trip-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Estilo para Precios Tachados y Nuevos */
.price-display {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 2.2rem;
    color: #111;
    font-weight: 900;
    line-height: 1;
}

/* Destacado Round Trip (Best Value) */
.price-box.featured {
    border: 2px solid #26a65b;
    background-color: rgba(38, 166, 91, 0.02);
}

.best-value-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #007aff; /* Azul de marca */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 4px;
}

.save-amount {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 800;
    color: #26a65b; /* Verde para el ahorro */
}

/* Botón de Acción */
.btn-book-price {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: #26a65b;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-book-price:hover {
    background-color: #007aff; /* Cambio a azul en interacción */
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .new-price {
        font-size: 1.8rem;
    }
    .pricing-card {
        padding: 25px;
    }
}


/* --- SECCIÓN DISTANCIA Y TIEMPO --- */
.luxury-distance-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.dist-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Columna de Texto */
.dist-content-col {
    text-align: left;
}

/* Fila de Estadísticas Rápidas */
.dist-stats-row {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #007aff; /* Azul de marca */
    border-radius: 4px;
}

.stat-item i {
    color: #26a65b; /* Verde de marca */
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111;
}

.dist-text-wrapper p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Columna de la Imagen */
.dist-map-col {
    position: relative;
}

.route-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    line-height: 0; /* Elimina espacio extra bajo la imagen */
}

.img-responsive-route {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.route-image-container:hover .img-responsive-route {
    transform: scale(1.03);
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .dist-grid-wrapper {
        gap: 40px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .luxury-distance-section {
        padding: 60px 0;
    }

    .dist-grid-wrapper {
        grid-template-columns: 1fr; /* Una sola columna */
        gap: 40px;
    }

    .dist-content-col {
        text-align: center;
    }

    .dist-stats-row {
        justify-content: center;
    }

    .stat-item {
        border-left: none;
        border-top: 4px solid #007aff;
        min-width: 140px;
    }

    .dist-map-col {
        order: 2; /* Imagen abajo en móvil para dar prioridad al texto SEO */
    }
}


/* --- SECCIÓN TRASLADO IDA Y VUELTA (ROUND TRIP) --- */
.luxury-roundtrip-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.rt-grid-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Imagen un poco más ancha para equilibrio visual */
    gap: 60px;
    align-items: center;
}

/* Columna de Imagen */
.rt-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.img-fluid-luxury {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rt-image-container:hover .img-fluid-luxury {
    transform: scale(1.05);
}

/* Columna de Contenido */
.rt-content-col {
    text-align: left;
}

.rt-text-wrapper p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Lista de Beneficios */
.rt-benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.rt-benefits-list li {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rt-benefits-list i {
    color: #26a65b; /* Verde de marca */
    font-size: 1.3rem;
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .rt-grid-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .luxury-roundtrip-section {
        padding: 60px 0;
    }

    .rt-grid-wrapper {
        grid-template-columns: 1fr; /* Una columna en móvil */
    }

    .rt-image-col {
        order: 2; /* Texto primero, luego imagen en móvil */
    }

    .rt-content-col {
        text-align: center;
    }

    .rt-benefits-list li {
        justify-content: center;
    }
}


/* --- SECCIÓN HOTELES Y PUNTOS EN AKUMAL --- */
.luxury-hotels-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.hotels-full-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hotels-intro-text {
    margin-bottom: 40px;
}

.hotels-intro-text p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Listado de Hoteles en Grid de 2 Columnas */
.hotels-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 15px 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hotels-list-grid li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-weight: 700;
    color: #111;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.hotels-list-grid li:hover {
    background-color: #ffffff;
    border-color: #26a65b; /* Verde de marca */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.hotels-list-grid i {
    color: #007aff; /* Azul de marca */
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .luxury-hotels-section {
        padding: 60px 0;
    }

    .hotels-list-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        gap: 10px;
    }
    
    .hotels-intro-text {
        text-align: center;
    }

    .hotels-list-grid li:hover {
        transform: none; /* Evitamos el desplazamiento lateral en móvil */
    }
}


/* --- SECCIÓN FAQS --- */
.luxury-faq-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Item del Acordeón */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:first-child {
    border-top: 1px solid #eee;
}

/* Botón Pregunta */
.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #007aff; /* Azul de marca */
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    color: #26a65b; /* Verde de marca */
}

/* Estado Activo */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: #007aff;
}

/* Respuesta (Acordeón) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fcfcfc;
}

.faq-answer-content {
    padding: 0 0 25px 0;
}

.faq-answer-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
        padding: 20px 0;
    }
}


/* --- SECCIÓN CTA FULL WIDTH COMPACTO --- */
.luxury-cta-fullwidth {
    width: 100%;
    background-color: #26a65b; /* Tu Verde de Marca */
    padding: 30px 0; /* Altura reducida */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cta-full-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Texto */
.cta-text-content {
    text-align: left;
}

.cta-title-mini {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 0 5px 0;
}

.cta-highlight {
    background: #ffffff;
    color: #26a65b;
    padding: 2px 12px;
    border-radius: 5px;
    font-size: 1.1rem;
    margin-left: 10px;
    vertical-align: middle;
}

.cta-desc-mini {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* Botón Compacto */
.btn-cta-compact {
    display: inline-block;
    background-color: #ffffff;
    color: #111;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cta-compact:hover {
    transform: translateY(-2px);
    background-color: #f1f1f1;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .cta-flex-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-text-content {
        text-align: center;
    }
    
    .cta-title-mini {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .btn-cta-compact {
        width: 100%;
        text-align: center;
    }
}