.letsgo-modal {
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
}

.letsgo-modal-content {
    background:#111;
    color:white;
    width:600px;
    max-width:90%;
    margin:5% auto;
    padding:25px;
    border-radius:15px;
    
    /* El truco para que no se salga de la pantalla */
    max-height: 90vh; 
    overflow-y: auto;
}

/* Estilizar el scrollbar solo para el modal */
.letsgo-modal-content::-webkit-scrollbar {
    width: 8px;
}

.letsgo-modal-content::-webkit-scrollbar-track {
    background: #222;
    border-radius: 10px;
}

.letsgo-modal-content::-webkit-scrollbar-thumb {
    background: #00c8c5; /* Color de tu botón */
    border-radius: 10px;
}

.letsgo-modal-content::-webkit-scrollbar-thumb:hover {
    background: hotpink;
}

.letsgo-modal-content h3,
.letsgo-modal-content h4 {
    color: #00c8c5;
}

.letsgo-modal input {

    color: black;

}

.letsgo-modal select {

    color: black;

}

.letsgo-close {
    float:right;
    cursor:pointer;
    font-size:22px;
}

.letsgo-passengers .row {
    display:flex;
    justify-content:space-between;
    margin:10px 0;
}

.counter button {
    width:30px;
    height:30px;
}

.letsgo-search-btn {
    width:100%;
    margin-top:15px;
    padding:12px;
    background:#00a859;
    color:white;
    border:none;
    border-radius:10px;
}

.letsgo-floating-book {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #00a859;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all .2s ease;
}

.letsgo-floating-book:hover {
    transform: translateX(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .letsgo-floating-book {
        width: 90%;
        text-align: center;
        border-radius: 12px;
    }
}


/*
    CALENDAR - DATE PICKER
    https://www.youtube.com/watch?v=nYkfP2lSpM4
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

.date-input {
    padding: 10px;
    font-size: 1.3rem;
    border-radius: 5px;
    border: 1px solid #eee;
}

/* datepicker styles */

.datepicker-container {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    box-sizing:border-box;
    /* font-family: "Poppins", sans-serif; */
    color: #333;
    /* background: mediumpurple; */
}

.datepicker {
    position: absolute;
    top: 100%;
    z-index: 100;
    margin-top: 2px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.datepicker button {
    cursor: pointer;
    border: none;
    border-radius: 3px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s;
}

.days, .dates {
    display: grid;
    grid-template-columns: repeat(7, 32px);
    gap: 10px;
    /* margin-block: 10px; */
}

.days span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.dates button {
    color: slategray;
    aspect-ratio: 1;
}

.dates button:disabled {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.dates button:hover {
    background: rgba(119, 136, 153, 0.1);
}

.dates button.today {
    background: rgba(112, 183, 216, 0.2);
    color: #03b4b8;
}

.dates button.selected {
    background: #03b4b8;
    color: #fff;
}

.datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.datepicker-header select,
.datepicker-header input {
    font-size: 14px;
    border: 1px solid #eee;
}

.datepicker-header input {
    max-width: 64px;
}

.datepicker-header select {
    max-width: 110px;
}

.datepicker-header button {
    color: slategray;
}

.datepicker-header button:hover {
    background-color: #03b4b8;
    color: #fff;
}

.datepicker-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.datepicker-footer button {
    background: rgba(119, 136, 153, 0.1);
    padding: 3px 10px;
}

.datepicker-footer button.apply {
    background: #03b4b8;
    color: #fff;
}

.e-timewidget .e-in-wrap, .e-time-popup {
    border-radius: 5px;
}



.tdclass input{
    font-family: "Poppins", sans-serif;
}

.trip-duration-container {
    width: 80%;
    margin: 20px auto; /* Lo centra horizontalmente y le da respiro arriba y abajo */
    padding: 15px 20px;
    border: 2px solid #03B4B8; /* Tu color de borde */
    border-radius: 10px;
    background-color: #f0fcfc; /* Un fondo cyan súper claro para contrastar */
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre el icono y el texto */
    box-shadow: 0 4px 6px rgba(0,0,0,0.03); /* Una sombra muy sutil */
    box-sizing: border-box;
}

.trip-duration-container h4 {
    margin: 0;
    color: #444444; /* Un gris oscuro para mejor lectura */
    font-size: 16px;
    font-weight: 500;
}

/* Destacamos el tiempo de llegada con el color principal y negrita */
#trip-duration-time {
    font-weight: 700;
    color: #03B4B8;
}

.letsgo-quick-search {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.qs-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.qs-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.qs-group label {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.qs-group select {
    background: #222;
    color: white;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 5px;
    height: 40px;
}

#qs-submit {
    width: 100%;
    background: #FFB300; /* Color llamativo */
    color: #111;
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#qs-submit:hover {
    background: #fff;
}

/* Contenedor del selector flotante */
.letsgo-floating-lang {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Aquí lo anclamos a la izquierda */
    z-index: 9999;
    display: flex;
    gap: 5px;
    background: rgba(17, 17, 17, 0.9); /* Fondo oscuro semitransparente */
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #00c8c5; /* Borde con tu color principal */
    backdrop-filter: blur(5px);
}

/* Estilo de los botones (banderas) */
.letsgo-floating-lang .lang-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.5; /* Desactivado por defecto */
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Estilo para el idioma activo */
.letsgo-floating-lang .lang-btn.active {
    background: #00c8c5;
    color: #111; /* Texto oscuro para contrastar con el fondo cyan */
    opacity: 1;
}

/* Efecto hover en los inactivos */
.letsgo-floating-lang .lang-btn:not(.active):hover {
    opacity: 0.9;
    background: rgba(0, 200, 197, 0.2);
}

/* Ajuste para móviles: hacerlo un poco más pequeño */
@media (max-width: 768px) {
    .letsgo-floating-lang {
        bottom: 15px;
        left: 15px;
        padding: 4px;
    }
    .letsgo-floating-lang .lang-btn {
        font-size: 12px;
        padding: 5px 8px;
    }
}

/*Testimonial*/

.letsgo-testimonial-block {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    color: #ffffff; /* Cambiamos el texto a blanco para que resalte */
}

.quote-mark {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2); /* Comillas blancas transparentes */
    font-family: serif;
    position: absolute;
    top: 50px;
    left: 20px;
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Las estrellas ahora en blanco */
.testimonial-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    margin-right: 2px;
}

/* El botón vibrante en amarillo */
.testimonial-btn {
    align-self: flex-start;
    background-color: #FFB300; 
    color: #111;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.testimonial-btn:hover {
    background-color: #fff;
    color: #111;
}

/* BENEFITS */

.letsgo-features-block {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* Le di un degradado muy sutil de tu amarillo a un tono penitas más cálido para darle profundidad */
    /*background: linear-gradient(135deg, #FFD23B 0%, #F0BA00 100%);*/
    color: #111111; /* Texto oscuro para legibilidad perfecta */
    font-family: sans-serif;
}

.features-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.plane-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.features-title {
    color: #111111;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-subtitle {
    color: #222222;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500; /* Un poco más de peso para que no se pierda en el amarillo */
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700; /* Letra más gruesa para resaltar los beneficios */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #111111;
}

.check-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* El botón ahora es oscuro para crear un ancla visual */
.features-btn {
    align-self: flex-start;
    background-color: #111111; 
    color: #ffffff; /* Texto blanco en botón oscuro */
    border: none;
    padding: 16px 36px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.features-btn:hover {
    background-color: #333333; /* Aclara un poco al pasar el mouse */
    color: #FFD23B; /* Las letras se vuelven del color del fondo */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ==========================================================================
   GRID DE DESTINOS "LETS GO TRANSPORT"
   ========================================================================== */

.letsgo-destinations-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* La magia del CSS Grid: Se adapta automáticamente a móviles, tablets y PC */
.letsgo-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Estilos de la Tarjeta */
.letsgo-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.letsgo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Imagen de la cabecera */
.letsgo-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Etiqueta flotante (Opcional) */
.letsgo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff5a5f;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contenido interno */
.letsgo-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Empuja el botón hacia abajo si el título es corto */
}

.letsgo-card-content h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.letsgo-card-details {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    color: #555;
    font-size: 14px;
}

.letsgo-card-details li {
    margin-bottom: 8px;
}

/* Botón de Reservar */
.letsgo-btn-reservar {
    margin-top: auto; /* Mantiene el botón siempre al fondo de la tarjeta */
    background-color: #0073aa; /* Cambia esto al color principal de tu marca */
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    text-align: center;
}

.letsgo-btn-reservar:hover {
    background-color: #005177;
}