/* ============================================================
   EXATRAVEL — FULL GLASSMORPHISM PREMIUM + RESPONSIVE FINAL
============================================================ */

/* ============================================================
   PALETA DE COLORES
============================================================ */
:root {
    --color-primary: #FF9F4A;
    --color-primary-light: #FFC276;
    --color-primary-dark: #CC7D38;
    --color-yellow: #F7D046;
    --color-text: #ECECEC;
    --color-text-light: #B9B9B9;
    --glass-light: rgba(255,255,255,0.18);
    --glass-medium: rgba(255,255,255,0.25);
    --glass-strong: rgba(255,255,255,0.32);
    --glass-dark: rgba(0,0,0,0.28);
    --blur-soft: blur(14px);
    --blur-strong: blur(20px);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.25);
    --shadow-strong: 0 25px 55px rgba(0,0,0,0.55);
    --transition-fast: 0.25s ease;
    --transition-slow: 0.65s ease;
}

/* ============================================================
   BASE + FONDO 4K PREMIUM
============================================================ */
html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, sans-serif;
    background: radial-gradient(circle at 20% 30%, rgba(255,140,70,0.35), transparent 60%), radial-gradient(circle at 80% 20%, rgba(255,90,20,0.22), transparent 70%), radial-gradient(circle at 50% 85%, rgba(255,200,50,0.18), transparent 80%), linear-gradient(180deg, #0E0E10 0%, #141416 100%);
    background-attachment: fixed;
    color: var(--color-text);
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ============================================================
   NAVBAR ULTRA PREMIUM (DESKTOP + MOBILE)
============================================================ */
.navbar {
    position: fixed !important;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 94%);
    padding: 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 28px rgba(0,0,0,0.55);
    z-index: 999999 !important;
    transition: 0.35s ease;
}

    .navbar.scrolled {
        padding: 8px 22px;
        background: rgba(0,0,0,0.55);
        box-shadow: 0 6px 25px rgba(0,0,0,0.65);
    }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    filter: drop-shadow(0 0 8px rgba(255,150,60,0.4));
}

.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 8px rgba(255,150,60,0.55);
    cursor: pointer;
    transition: 0.3s ease;
}

    .brand-text:hover {
        color: var(--color-primary);
        text-shadow: 0 0 12px rgba(255,150,60,0.75);
    }

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

    .nav-links a {
        text-decoration: none;
        color: rgba(255,255,255,0.85);
        font-weight: 600;
        position: relative;
        transition: 0.35s ease;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: var(--color-primary);
            border-radius: 10px;
            transition: width 0.35s ease;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            text-shadow: 0 0 8px rgba(255,150,60,0.65);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-social {
    display: flex;
    gap: 18px;
}

    .nav-social a {
        color: rgba(255,255,255,0.85);
        font-size: 1.25rem;
        transition: 0.3s ease;
    }

        .nav-social a:hover {
            color: var(--color-primary);
            transform: scale(1.22);
            filter: drop-shadow(0 0 6px rgba(255,150,60,0.7));
        }

/* Botón hamburguesa móvil */
.nav-toggle {
    display: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
    padding: 8px;
}

/* ============================================================
   PANEL MÓVIL (MENÚ LATERAL)
============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255,255,255,0.15);
    box-shadow: -10px 0 35px rgba(0,0,0,0.45);
    transition: 0.35s ease;
    z-index: 999999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .mobile-menu.open {
        right: 0;
    }

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.mobile-link {
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Cerrar menú */
.mobile-close {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 1.9rem;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

    .mobile-close:hover {
        color: var(--color-primary);
        transform: scale(1.15);
    }

/* Redes sociales dentro del panel móvil */
.mobile-social {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 22px;
    font-size: 1.6rem;
}

    .mobile-social a {
        color: rgba(255,255,255,0.85);
    }

        .mobile-social a:hover {
            color: var(--color-primary);
            transform: scale(1.2);
        }

/* Mostrar menú hamburguesa en móvil */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-social {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

/* ============================================================
   HERO + SLIDER + COLLAGE
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 0 7vw;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Slider detrás */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0 !important;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.08);
    transition: opacity 1.4s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
    }

/* Overlay cálido */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,140,70,0.28), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255,200,50,0.20), transparent 70%);
    backdrop-filter: blur(20px);
    z-index: 1 !important;
}

.hero-content {
    position: relative;
    z-index: 5 !important;
    max-width: 650px;
}

    .hero-content h1 {
        font-size: clamp(2.8rem, 4.5vw, 4rem);
        font-weight: 900;
        color: white;
    }

.hero-subtitle {
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 14px;
    background: linear-gradient(to right, rgba(255,150,60,0.65), rgba(255,150,60,0.35), rgba(255,150,60,0));
    backdrop-filter: blur(6px);
    color: white;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.btn-hero {
    display: inline-block;
    padding: 16px 34px;
    background: linear-gradient(135deg, #FF9F4A, #F7D046);
    color: white;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(255,140,70,0.55);
    transition: 0.25s ease;
}

    .btn-hero:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 55px rgba(255,140,70,0.65);
    }

/* ============================================================
   COLLAGE PREMIUM PARALLAX (Uniforme)
============================================================ */
.hero-collage {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5 !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 22px;
    width: 520px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
    opacity: 0;
    animation: collageEnter 1.2s ease forwards;
}

    .hero-collage img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: 0 8px 26px rgba(0,0,0,0.35);
        transition: 0.35s ease;
    }

        .hero-collage img:hover {
            transform: scale(1.06);
            box-shadow: 0 18px 38px rgba(255,140,70,0.55);
        }

@keyframes collageEnter {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* ============================================================
   SECCIONES GLASS
============================================================ */
.section,
.dark-section {
    padding: 90px 7vw;
    border-radius: var(--radius-lg);
    margin-bottom: 85px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
}

.section {
    background: rgba(255,255,255,0.07);
}

.dark-section {
    background: rgba(0,0,0,0.25);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    padding-left: 48px;
    position: relative;
    margin-bottom: 30px;
}

    .section-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 36px;
        height: 4px;
        background: var(--color-primary);
        border-radius: 999px;
        transform: translateY(-50%);
    }

/* DESTINOS */
.grid-destinos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.card-destino {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: 0.35s ease;
}

    .card-destino img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .card-destino:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 55px rgba(255,140,70,0.45);
        border-color: rgba(255,180,90,0.55);
    }

/* TOURS */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}

.tour-item {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.25);
    text-align: center;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

    .tour-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 45px rgba(255,140,70,0.45);
    }

/* PAQUETES */
.carousel-paquetes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.paquete {
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
}

    .paquete:hover {
        transform: translateY(-4px);
        border-color: var(--color-primary);
        background: rgba(255,255,255,0.10);
        box-shadow: 0 14px 32px rgba(0,0,0,0.35);
    }

/* ============================================================
   ANIMACIONES SCROLL PREMIUM
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: var(--transition-slow);
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================================
   RESPONSIVE HERO + COLLAGE
============================================================ */
@media (max-width: 1100px) {
    .hero-collage {
        position: static;
        transform: none;
        margin: 40px auto 0;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 140px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-collage {
        max-width: 360px;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 35px;
        padding: 18px;
    }

        .hero-collage img {
            height: 120px !important;
        }
}

@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-collage {
        grid-template-columns: repeat(1, 1fr);
        max-width: 300px;
    }

        .hero-collage img {
            height: 140px !important;
        }
}

/* ============================================================
   CONTACTO + MAPA ULTRA PREMIUM
============================================================ */

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: stretch;
}

/* FORMULARIO */
.form-contacto {
    flex: 1;
    display: grid;
    gap: 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

    .form-contacto input,
    .form-contacto select,
    .form-contacto textarea {
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.25);
        padding: 14px;
        border-radius: 12px;
        color: white;
        font-size: 1rem;
    }

        .form-contacto input::placeholder,
        .form-contacto textarea::placeholder {
            color: #dcdcdc;
        }

        .form-contacto input:focus,
        .form-contacto select:focus,
        .form-contacto textarea:focus {
            border-color: var(--color-primary);
            box-shadow: 0 18px 45px rgba(255,150,60,0.35);
            outline: none;
        }

.btn-enviar {
    background: linear-gradient(135deg, #FF9F4A, #F7D046);
    padding: 16px 28px;
    border-radius: 999px;
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(255,140,70,0.55);
    transition: 0.25s ease;
}

    .btn-enviar:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 60px rgba(255,140,70,0.65);
    }

/* MAPA */
.contact-map {
    flex: 1;
    min-height: 350px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map {
        height: 280px;
    }
}

/* ======= FIX: Hero collage en móviles ======= */
@media (max-width: 900px) {

    .hero-collage {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        /* Elimina el z-index que lo pone encima */
        z-index: 1 !important;
        /* Colocarlo debajo del hero-content */
        margin-top: 40px;
        margin-bottom: 20px;
        transform: none !important;
    }

    .hero-content {
        z-index: 10 !important; /* siempre adelante */
        position: relative;
    }
}

html {
    scroll-behavior: smooth;
}

/* ============================================================
   PAQUETES EXCLUSIVOS — VIEWER ULTRA PREMIUM
   ============================================================ */

.paquete-viewer {
    position: relative;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    border-radius: 26px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.45);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeViewer 0.6s ease-out forwards;
}

/* Animación al aparecer */
@keyframes fadeViewer {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Imagen principal */
.paquete-viewer img {
    width: 700px;
    max-width: 90%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    transition: opacity .35s ease, transform .35s ease;
    box-shadow: 0 22px 45px rgba(0,0,0,0.55);
}

    /* Fade cuando cambia imagen */
    .paquete-viewer img.fade-out {
        opacity: 0;
        transform: scale(.97);
    }

/* Flechas */
.pv-arrow {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(14px);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

    /* Hover con glow naranja */
    .pv-arrow:hover {
        transform: scale(1.15);
        color: var(--color-primary);
        box-shadow: 0 15px 40px rgba(255,140,70,0.55);
    }

/* Activo */
.paquete.active {
    background: rgba(255,255,255,0.18);
    border: 1px solid var(--color-primary);
    box-shadow: 0 18px 45px rgba(255,150,60,0.45);
    transform: translateY(-4px);
}

    /* Glow naranja permanente para el botón activo */
    .paquete.active::after {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 18px;
        background: radial-gradient(circle, rgba(255,150,60,0.55), rgba(255,150,60,0.12), transparent 85%);
        filter: blur(14px);
        z-index: -1;
    }

/* Responsive */
@media (max-width: 900px) {
    .paquete-viewer {
        flex-direction: column;
        padding: 22px;
        gap: 14px;
    }

        .paquete-viewer img {
            height: 300px;
        }

    .pv-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .paquete-viewer img {
        height: 240px;
        border-radius: 18px;
    }

    .pv-arrow {
        width: 42px;
        height: 42px;
    }
}

/* ============================================
   NOSOTROS — LAYOUT CON IMAGEN PREMIUM
============================================ */
.nosotros-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 25px;
}

/* Texto */
.nosotros-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #EAEAEA;
}

/* Caja de imagen estilo glass */
.nosotros-img-box {
    flex: 1;
    max-width: 480px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 22px 45px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

    /* Imagen */
    .nosotros-img-box img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        border-radius: 16px;
    }

    /* Hover Premium */
    .nosotros-img-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(255,150,60,0.45);
        border-color: rgba(255,140,70,0.55);
    }

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 950px) {
    .nosotros-container {
        flex-direction: column;
        text-align: center;
    }

    .nosotros-img-box {
        max-width: 90%;
    }

        .nosotros-img-box img {
            height: 260px;
            object-fit: cover;
        }
}

/*Nueva pagina destinos estilos tarjetas etc.*/
.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destino-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transition: all .3s ease;
}

    .destino-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

.destino-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destino-content {
    padding: 18px 20px;
}

    .destino-content h3 {
        margin-bottom: 8px;
        font-size: 1.25rem;
        font-weight: 700;
    }

.destino-detalle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.destino-precio {
    font-size: 1.3rem;
    font-weight: bold;
    color: #007bff;
    margin-top: 12px;
}

/*param boton ver todos destinos*/
.ver-mas-container {
    text-align: right;
    margin-top: 20px;
}

.btn-ver-mas {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #0066d4, #0099ff);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

    .btn-ver-mas:hover {
        background: linear-gradient(to right, #004c9e, #007ad6);
        transform: translateX(4px);
    }

/* ============================================
   BOTON ADMINISTRACION
============================================ */
.admin-link {
    font-weight: 600;
    color: #007bff;
}

    .admin-link:hover {
        color: #0a58ca;
    }

.admin-icon {
    color: #6c757d;
    padding: 6px 10px;
    font-size: 18px;
    transition: all .3s ease;
}

    .admin-icon:hover {
        color: #1a73e8;
        transform: rotate(20deg);
    }

/* ============================================================
   ESTILOS PARA CRUD DESTINOS
============================================================ */
/* ==== CONTENEDORES ===== */
.admin-section {
    padding: 60px 0;
}

.admin-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 25px;
    padding: 40px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.25);
    color: white;
}

/* ==== TITULOS ===== */
.admin-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==== TABLAS ===== */
.table-wrapper {
    overflow-x: auto;
}

.table-premium {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

    .table-premium th {
        background: rgba(255,255,255,0.15);
        padding: 12px;
        text-align: left;
    }

    .table-premium td {
        padding: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

/* Estados */
.estado-publicado {
    color: #00e676;
    font-weight: bold;
}

.estado-no-publicado {
    color: #ff5252;
    font-weight: bold;
}

/* ==== BOTONES ===== */
.btn-premium {
    background: linear-gradient(135deg, #0094ff, #0060d4);
    color: white !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-premium:hover {
        background: linear-gradient(135deg, #007ee0, #004ca8);
    }

.btn-action {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 1rem;
    text-decoration: none;
}

    .btn-action.edit {
        background: #ffca28;
        color: #333;
    }

    .btn-action.delete {
        background: #e53935;
        color: white;
    }

/* ===== FORMULARIOS ===== */
.form-container {
    max-width: 700px;
}

.form-group-premium {
    margin-bottom: 20px;
}

.form-control-premium {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.85);
}

.preview-img {
    width: 220px;
    border-radius: 12px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.5);
}

.btn-cancel {
    margin-left: 10px;
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    color: #fff;
}

.btn-delete {
    background: #d32f2f;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
}

/* ============================================================
   ESTILOS PARA BUSCADOR DESTINOS
============================================================ */
/* CONTENEDOR DEL FILTRO */
.filtro-container-premium {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

/* INPUT */
.filtro-input-premium {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.85);
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
}

    .filtro-input-premium:focus {
        background: white;
        box-shadow: 0 0 6px #0094ff;
    }

/* SELECT */
.filtro-select-premium {
    padding: 12px;
    width: 180px;
    border-radius: 10px;
    background: rgba(255,255,255,0.85);
    border: none;
    outline: none;
    font-size: 1rem;
    transition: 0.3s ease;
}

    .filtro-select-premium:focus {
        background: white;
        box-shadow: 0 0 6px #0094ff;
    }

/* ============================================================
   MODAL DESTINOS
============================================================ */
/* Fondo de la modal */
.modal-destino {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.80);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

/* Contenedor */
.modal-destino-content {
    background: #ffffff;
    width: 95%;
    max-width: 850px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    animation: modalFadeIn 0.35s ease-out;
    position: relative;
}

/* Botón cerrar */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: rgba(0,0,0,0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

    .modal-close:hover {
        background: rgba(0,0,0,0.3);
    }

/* Imagen */
.modal-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido inferior */
.modal-details {
    padding: 25px 35px 35px 35px; /* 🔥 aumenta el padding inferior */
}

/* Título */
.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2A2A2A;
}

/* Descripción */
.modal-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

/* Lista de info */
.modal-info p {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #444;
}

/* Animación */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.88);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive móvil */
@media (max-width: 600px) {
    .modal-img-wrapper {
        height: 250px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-description {
        font-size: 1rem;
    }
}

.modal-hide {
    animation: fadeOut 0.35s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.9);
    }
}


/* ============================================================
   DISEÑO BOTON MODAL RESERVAR AHORA
============================================================ */
.btn-reservar {
    background: linear-gradient(to right, #0066d4, #0099ff);
    padding: 12px 24px;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    float: right;
    margin-top: 20px;
    transition: 0.3s ease;
}

    .btn-reservar:hover {
        background: linear-gradient(to right, #004c9e, #007ad6);
        transform: translateX(3px);
    }

.modal-footer {
    margin-top: 25px;
    padding-bottom: 35px;
}

/* =========================================================
   FOOTER - PREMIUM / SEO / RESPONSIVE / LEGAL
========================================================= */
.footer.ultra-footer {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 1.5rem;
}

.footer-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-brand,
.footer-column {
    min-width: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 140px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.footer-text {
    color: #d6d6d6;
    line-height: 1.8;
    margin: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 0.2rem;
    color: #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: #d6d6d6;
    margin: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

    .footer-links li {
        margin: 0;
    }

        .footer-links li a {
            color: #d6d6d6;
            text-decoration: none;
            transition: 0.25s ease;
            line-height: 1.6;
            word-break: break-word;
        }

            .footer-links li a:hover {
                color: #fff;
                opacity: 0.95;
            }

.footer-bottom {
    width: min(1200px, 92%);
    margin: 2rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-copy {
    margin: 0;
    color: #cfcfcf;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        text-decoration: none;
        flex: 0 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
        transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

        .footer-social a:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.09);
        }

        .footer-social a i {
            color: #fff;
            font-size: 1rem;
        }

@media (max-width: 992px) {
    .footer.ultra-footer {
        padding: 3rem 0 1.4rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.6rem;
    }
}

@media (max-width: 640px) {
    .footer.ultra-footer {
        padding: 2.4rem 0 1.2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-brand,
    .footer-column {
        align-items: center;
        padding: 1.15rem 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .footer-logo {
        width: 120px;
        margin: 0 auto;
    }

    .footer-brand-title {
        font-size: 1.25rem;
    }

    .footer-heading {
        margin-bottom: 0.2rem;
    }

    .footer-address,
    .footer-text,
    .footer-copy,
    .footer-links li a {
        text-align: center;
    }

    .footer-links {
        align-items: center;
        gap: 0.55rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-bottom {
        margin-top: 1.2rem;
        padding-top: 1rem;
    }

    .footer-copy {
        font-size: 0.95rem;
    }
}

/* =========================================================
   PÁGINAS LEGALES - POLÍTICAS Y TÉRMINOS
========================================================= */
.legal-page {
    padding: 110px 0 70px;
    background: #0b1120;
    min-height: 100vh;
}

.legal-section {
    width: 100%;
}

.legal-container {
    width: min(900px, 92%);
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

    .legal-container h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1.5rem;
        color: #fff;
    }

    .legal-container h2 {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        margin: 1.8rem 0 0.8rem;
        color: #fff;
    }

    .legal-container p {
        color: #cbd5e1;
        line-height: 1.9;
        margin-bottom: 1rem;
    }

@@media (max-width: 640px) {
    .legal-container {
        padding: 1.3rem;
        border-radius: 18px;
    }
}

/* =========================================================
   FAQ SEO
========================================================= */
.faq-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.faq-intro {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.4rem 1.2rem;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .faq-item:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.16);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
    }

    .faq-item h3 {
        font-size: 1.08rem;
        margin-bottom: 0.85rem;
        color: #fff;
        line-height: 1.4;
    }

    .faq-item p {
        color: #cbd5e1;
        line-height: 1.8;
        margin: 0;
    }

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.2rem 1rem;
    }
}

/* =========================================================
   CONTACTO - SEO / CONVERSIÓN / RESPONSIVE
========================================================= */
.contact-section {
    position: relative;
}

.contact-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.contact-intro {
    max-width: 920px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-box,
.contact-form-map-area,
.contact-map-card,
.form-contacto {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(8px);
}

.contact-info-box {
    padding: 1.7rem;
}

.contact-box-title {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.contact-box-text {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

    .contact-info-item i {
        font-size: 1.05rem;
        margin-top: 0.25rem;
        color: #fff;
        width: 20px;
        text-align: center;
    }

    .contact-info-item strong {
        display: block;
        color: #fff;
        margin-bottom: 0.2rem;
    }

    .contact-info-item p {
        margin: 0;
        color: #cbd5e1;
        line-height: 1.7;
    }

.contact-form-map-area {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-contacto {
    padding: 1.4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

    .form-group label {
        color: #fff;
        font-weight: 600;
        font-size: 0.95rem;
    }

.form-contacto input,
.form-contacto textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    .form-contacto input::placeholder,
    .form-contacto textarea::placeholder {
        color: #94a3b8;
    }

    .form-contacto input:focus,
    .form-contacto textarea:focus {
        border-color: rgba(255,255,255,0.28);
        box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
    }

.contact-map-card {
    overflow: hidden;
}

.contact-map {
    width: 100%;
    min-height: 340px;
}

.contact-address {
    padding: 1.2rem 1.4rem 1.4rem;
    font-style: normal;
    color: #cbd5e1;
    line-height: 1.8;
}

    .contact-address strong {
        color: #fff;
    }

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .form-contacto,
    .contact-form-map-area {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-box-title {
        font-size: 1.2rem;
    }

    .contact-map {
        min-height: 280px;
    }
}

/* =========================================================
   MINI SECCIÓN SEO - POR QUÉ ELEGIR EXA TRAVEL
========================================================= */
.seo-benefits-container {
    width: min(1150px, 92%);
    margin: 0 auto;
}

.seo-benefits-intro {
    max-width: 920px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.seo-benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.35rem 1.15rem;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .seo-benefit-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.16);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
    }

    .seo-benefit-card h3 {
        color: #fff;
        font-size: 1.08rem;
        margin-bottom: 0.85rem;
        line-height: 1.4;
    }

    .seo-benefit-card p {
        color: #cbd5e1;
        line-height: 1.8;
        margin: 0;
    }

@media (max-width: 992px) {
    .seo-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .seo-benefits-grid {
        grid-template-columns: 1fr;
    }

    .seo-benefit-card {
        padding: 1.2rem 1rem;
    }
}

/* =========================================================
   LOGIN ADMIN
========================================================= */
.login-admin-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: radial-gradient(circle at top, rgba(255, 153, 51, 0.18), transparent 35%), linear-gradient(180deg, #0b0b12 0%, #111827 100%);
}

.login-admin-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
}

.login-admin-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.login-admin-logo {
    width: 90px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.login-admin-header h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    margin-bottom: 0.6rem;
}

.login-admin-header p {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.login-admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.login-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

    .login-form-group label {
        color: #fff;
        font-weight: 600;
    }

.login-input {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    .login-input::placeholder {
        color: #94a3b8;
    }

    .login-input:focus {
        border-color: rgba(255,255,255,0.28);
        box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
    }

.login-btn {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

    .login-btn:hover {
        transform: translateY(-2px);
        opacity: 0.95;
    }

.login-validation,
.text-danger {
    color: #fca5a5;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .login-admin-card {
        padding: 1.4rem;
        border-radius: 20px;
    }

    .login-admin-section {
        padding: 100px 16px 40px;
    }
}