/* =========================================================
   ASSALAS TOURS - STYLE.CSS PROPRE
   Remplace tout ton ancien fichier style.css par ce fichier
========================================================= */

/* ================= RESET / BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f8fc;
    color: #08244d;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    min-height: 680px;
    padding-top: 95px;
    background:
        linear-gradient(rgba(0, 70, 160, 0.20), rgba(0, 160, 180, 0.10)),
        url("images/hero.jpg") center/cover no-repeat;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: relative;
    color: white;
}

/* ================= NAVBAR ================= */
.navbar {
    height: 95px;
    padding: 0 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 31, 67, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: 0.3s ease;
}

.navbar:hover {
    background: rgba(7, 31, 67, 0.85);
}

.logo {
    display: flex;
    align-items: center;
    max-width: 240px;
    overflow: hidden;
}

.logo img {
    width: 90px;
    max-width: 90px;
    height: auto;
    object-fit: contain;
}

.nav-center {
    margin-left: 50px;
    margin-right: auto;
}

.nav-search {
    position: relative;
    color: white;
    font-weight: 700;
}

.search-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    width: 260px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    padding: 10px 0;
    display: none;
    z-index: 99999;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 18px;
    color: #0b2c5f;
    font-weight: 700;
    cursor: pointer;
}

.menu-item i {
    font-size: 18px;
    width: 25px;
}

.menu-item:hover {
    background: #f2f4f7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.nav-right button {
    height: 42px;
    min-width: 150px;
    padding: 0 18px;
    border-radius: 28px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: none;
    transition: 0.3s ease;
}

.login-btn {
    background: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    box-shadow: none !important;
}

#openDevisModal {
    background: linear-gradient(135deg, #f4c542, #ffb300) !important;
    border: 2px solid transparent !important;
    color: #071f43 !important;
}

.login-btn:hover,
#openDevisModal:hover,
.user-btn:hover {
    transform: translateY(-2px);
}

/* ================= LANGUE ================= */
.language-switch {
    position: relative;
}

.lang-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4f7;
    padding: 6px 10px;
    border-radius: 12px;
    cursor: pointer;
}

.lang-selected img,
.lang-item img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.lang-dropdown {
    position: absolute;
    top: 48px;
    left: 0;
    background: #eef4f7;
    border-radius: 14px;
    width: 120px;
    padding: 8px 0;
    display: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    z-index: 1200;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-weight: 700;
    color: #071f43;
    cursor: pointer;
}

.lang-item:hover {
    background: rgba(0,0,0,0.05);
}

/* ================= USER DROPDOWN ================= */
.user-dropdown {
    position: relative;
}

.user-btn {
    background: rgba(255,255,255,0.14) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.28) !important;
    box-shadow: none !important;
    padding: 11px 16px !important;
    border-radius: 30px !important;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.user-menu-dropdown {
    position: absolute;
    top: 52px;
    right: 0;
    width: 235px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
    padding: 10px;
    display: none;
    z-index: 99999;
}

.user-menu-dropdown.active {
    display: block;
}

.user-menu-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    color: #071f43;
    font-weight: 700;
    border-radius: 12px;
}

.user-menu-dropdown a:hover {
    background: #f1f5f9;
}

.user-menu-dropdown hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 8px 0;
}

.logout-link {
    color: #dc2626 !important;
}

/* ================= MOBILE MENU ================= */
.mobile-menu-btn {
    display: none;
    background: white;
    color: #071f43;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
}

/* ================= HERO CONTENT ================= */
.hero-content {
    display: flex;
    justify-content: space-between;
    padding: 0 90px;
}

.hero-text h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    margin-top: 20px;
}

.hero-text h1 span {
    color: #ffd21e;
}

.subtitle {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

.features {
    display: flex;
    gap: 35px;
    margin-top: 35px;
    font-weight: 700;
}

.features div {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255,255,255,0.35);
    padding-right: 30px;
}

.features i {
    font-size: 28px;
}


@media (max-width: 768px) {

    .devis-modal {
        padding: 12px;
        align-items: flex-start;
    }

    .devis-modal-box {
        padding: 24px 18px;
        border-radius: 24px;
        margin-top: 25px;
    }

    .devis-header h2 {
        font-size: 30px;
    }

    .devis-grid {
        grid-template-columns: 1fr;
    }

    .devis-form textarea {
        height: 120px !important;
    }

    .devis-form input,
    .devis-form textarea {
        padding: 14px !important;
        font-size: 14px;
    }

    .devis-form button {
        padding: 15px !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
}


.mobile-panel{
    display:none;
    background:#eef4ff;
    border-radius:14px;
    padding:12px;
    color:#071f43;
    font-weight:800;
}

.mobile-panel.active{
    display:block;
}

.mobile-panel button{
    width:100%;
    border:none;
    background:white;
    padding:12px;
    border-radius:12px;
    margin-bottom:8px;
    font-weight:900;
    color:#071f43;
}

.mobile-notif-item{
    background:white;
    padding:12px;
    border-radius:12px;
    margin-bottom:8px;
}

.mobile-notif-item strong{
    display:block;
    color:#071f43;
    margin-bottom:5px;
}

.mobile-notif-item small{
    color:#64748b;
}


/* ================= PROMO CARD ================= */
.promo-card {
    width: 210px;
    height: 330px;
    margin-right: 40px;
    margin-top: 40px;
    border-radius: 22px;
    padding: 35px 20px;
    background:
        linear-gradient(rgba(20, 70, 170, 0.35), rgba(0,0,0,0.35)),
        url("images/dubai.jpg") center/cover;
    box-shadow: 0 18px 35px rgba(0,0,0,0.30);
    position: relative;
    overflow: hidden;
}

.promo-slide {
    position: absolute;
    inset: 35px 20px auto 20px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.promo-slide.active {
    opacity: 1;
}

.promo-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.promo-card p,
.promo-card small {
    font-size: 13px;
    font-weight: 700;
}

.promo-card h2 {
    color: #ffd21e;
    font-size: 36px;
    margin-top: 8px;
}

.promo-card button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #102b5c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ================= BOOKING BOX ================= */

/*
   Bloc réservation stabilisé.
   Important : ce bloc remplace les anciens patchs ajoutés en bas du fichier.
   Il fonctionne avec les classes existantes :
   .booking-wrapper, .booking-container, .booking-tabs, .booking-tab,
   .booking-content, .search-form, .field, .swap-btn, .search-btn.
*/

.booking-wrapper {
    width: 100%;
    position: relative;
    z-index: 50;
    margin: -90px auto 70px;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.booking-container,
.booking-box {
    width: min(88%, 1180px);
    margin: 0 auto;
    background: #ffffff;
    border-radius: 34px;
    padding: 26px;
    box-shadow: 0 28px 75px rgba(7, 31, 67, 0.14);
    position: relative;
    overflow: visible;
}

.booking-tabs,
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.booking-tab,
.tab {
    min-width: 145px;
    height: 54px;
    padding: 0 20px;
    border: none;
    border-radius: 18px;
    background: #f2f5fb;
    color: #071f43;
    font-weight: 900;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: 0.25s ease;
}

.booking-tab i,
.tab i {
    margin-right: 0;
}

.booking-tab:hover,
.tab:hover {
    background: #e8eef8;
}

.booking-tab.active,
.tab.active {
    background: #06285b;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(6, 40, 91, 0.18);
}

/* Affichage des onglets */
.booking-content {
    display: none !important;
}

.booking-content.active {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* Types de trajet */
.trip-types {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 2px 0 20px;
    padding-left: 4px;
    font-weight: 900;
    color: #071f43;
}

.trip-types span,
.trip-option {
    cursor: pointer;
    position: relative;
    padding-bottom: 9px;
    white-space: nowrap;
}

.trip-types span.active,
.trip-option.active {
    color: #2f6feb;
}

.trip-types span.active::after,
.trip-option.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #2f6feb;
    border-radius: 20px;
}

/* Champs */
.field {
    min-height: 62px;
    padding: 0 18px;
    border: 1px solid #dbe3ef;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
    transition: 0.25s ease;
}

.field:first-child {
    border-radius: 18px;
}

.field:hover {
    background: #ffffff;
    border-color: #b9c7db;
}

.field:focus-within {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.field label,
.field-text small {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 4px;
}

.field input,
.field select,
.field textarea {
    border: none;
    outline: none;
    width: 100%;
    color: #071f43;
    font-size: 14px;
    background: transparent;
    font-weight: 700;
}

.custom-field {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
}

.custom-field i {
    font-size: 20px;
    color: #2f6feb;
}

.field-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

/* Bouton swap */
.swap-btn,
.switch-destination {
    width: 48px;
    min-width: 48px;
    height: 62px;
    border: 1px solid #dbe3ef;
    border-radius: 16px;
    background: #ffffff;
    color: #2f6feb;
    font-size: 18px;
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.10);
}

.swap-btn i {
    width: 34px;
    height: 34px;
    border: 1px solid #b9c9ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
}

/* Boutons de recherche */
.search-btn,
.booking-submit {
    height: 62px;
    min-width: 220px;
    background: linear-gradient(135deg, #ffd21e, #ffb800);
    color: #071f43;
    border: none;
    padding: 0 26px;
    border-radius: 18px;
    font-weight: 950;
    font-size: 15px;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 18px 36px rgba(255, 184, 0, 0.24);
    transition: 0.25s ease;
}

.search-btn:hover,
.booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 45px rgba(255, 184, 0, 0.32);
}

.extra-options,
.booking-options {
    flex: 0 0 100%;
    margin-top: 4px;
}

.direct-flight,
.booking-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #071f43;
}

.direct-flight input,
.booking-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #2f6feb;
}

/* Largeurs desktop par formulaire */
#vols.active .airport-field {
    flex: 1 1 220px;
    max-width: 240px;
}

#vols.active .range-date-field,
#vols.active .date-field {
    flex: 1 1 250px;
    max-width: 270px;
}

#vols.active .travelers-field {
    flex: 0 1 170px;
    max-width: 180px;
}

#vols.active .search-btn {
    flex: 0 0 220px;
}

#hotels.active .field {
    flex: 1 1 240px;
}

#hotels.active .search-btn {
    flex: 0 0 220px;
}

#visas.active .field {
    flex: 1 1 210px;
}

#visas.active .visa-address,
#visas.active .visa-file {
    flex: 1 1 330px;
}

#visas.active .visa-info-box {
    flex: 0 0 100%;
}

#visas.active .search-btn {
    flex: 0 0 240px;
}

#transferts.active .custom-field {
    flex: 1 1 220px;
}

#transferts.active .date-field {
    flex: 1 1 180px;
}

#transferts.active .field:not(.custom-field):not(.date-field) {
    flex: 1 1 150px;
}

#transferts.active .search-btn {
    flex: 0 0 220px;
}

/* Champs spécifiques visa */
.visa-address,
.visa-info-box {
    grid-column: span 2;
}

.france-visa-fields {
    display: contents;
}

.visa-info-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #7c2d12;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.visa-info-box ul {
    margin: 10px 0 10px 20px;
}


/* ================= AIRPORT SEARCH ================= */
.airport-field {
    position: relative;
}

.airport-field input {
    border: none;
    outline: none;
    font-weight: 800;
    color: #071f43;
    background: transparent;
}

.airport-results,
.autocomplete-list {
    position: absolute;
    top: 70px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
    z-index: 2000;
    display: none;
    overflow: hidden;
}

.autocomplete-list {
    top: 100%;
    width: 100%;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.airport-result,
.autocomplete-list div {
    padding: 13px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
}

.airport-result:hover,
.autocomplete-list div:hover {
    background: #f2f6ff;
}

.airport-result span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

/* ================= VOYAGEURS DROPDOWN ================= */
.travelers-field {
    position: relative;
    cursor: pointer;
    min-height: 58px;
    height: 58px;
    padding: 8px 12px;
}

.travelers-field label {
    font-size: 11px;
    margin-bottom: 3px;
}

.travelers-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #071f43;
    font-weight: 800;
    font-size: 14px;
}

.travelers-dropdown {
    position: absolute;
    top: 72px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    padding: 20px;
    display: none;
    z-index: 5000;
}

.travelers-dropdown h4 {
    font-size: 15px;
    margin-bottom: 18px;
    color: #071f43;
}

.traveler-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.traveler-row strong {
    display: block;
    font-size: 14px;
    color: #071f43;
}

.traveler-row small {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid #cbd5e1;
    color: #071f43;
    font-size: 20px;
}

.counter span {
    min-width: 18px;
    text-align: center;
    font-weight: 700;
}

#cabinClass {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #94a3b8;
    padding: 0 12px;
    margin-top: 5px;
    font-weight: 600;
    color: #071f43;
}

.confirm-travelers {
    width: 100%;
    margin-top: 15px;
    height: 46px;
    border: none;
    border-radius: 25px;
    background: #2f6feb;
    color: white;
    font-weight: 800;
}

/* ================= DESTINATIONS POPULAIRES ULTRA PREMIUM ================= */
.destinations {
    width: 88%;
    margin: 90px auto 70px;
    padding: 42px;
    display: grid;
    grid-template-columns: 280px 1fr 90px;
    align-items: center;
    gap: 38px;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(7, 31, 67, 0.08);
}

.destination-title p {
    color: #2563eb;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.destination-title h2 {
    font-size: 38px;
    line-height: 1.18;
    color: #061b3a;
    font-weight: 950;
}

.destination-title h2 span {
    color: #3368ff;
}

.btn-destination {
    margin-top: 28px;
    padding: 15px 25px;
    border-radius: 999px;
    border: 1px solid #b9c9ff;
    background: white;
    color: #071f43;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
    transition: 0.3s;
}

.btn-destination:hover {
    background: #071f43;
    color: white;
    transform: translateY(-3px);
}

.destinations .cards {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 6px 20px;
}

.destinations .cards::-webkit-scrollbar {
    display: none;
}

.destination-card-pro {
    flex: 0 0 245px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(7, 31, 67, 0.10);
    transition: 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8eef7;
}

.destination-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(7, 31, 67, 0.16);
}

.destination-img-pro {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-img-pro{
    transition: transform .5s ease;
}

.destination-card-pro:hover .destination-img-pro{
    transform: scale(1.06);
}

.destination-img-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,31,67,0.28), transparent);
}

.destination-img-pro span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ffd21e;
    color: #061b3a;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(255, 210, 30, 0.28);
}

.destination-img-pro span.white {
    background: white;
}

.destination-info-pro {
    padding: 16px 18px 18px;
}

.destination-info-pro h3 {
    margin: 0;
    color: #061b3a;
    font-size: 24px;
    font-weight: 950;
    text-transform: capitalize;
}

.destination-info-pro p {
    margin: 5px 0 15px;
    color: #64748b;
    font-weight: 800;
    text-transform: capitalize;
}

.destination-price-pro {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    color: #061b3a;
    font-size: 14px;
    font-weight: 900;
}

.destination-price-pro i {
    color: #2563eb;
}

.destination-price-pro strong {
    color: #061b3a;
    font-size: 16px;
    font-weight: 950;
}

.arrows {
    display: flex;
    gap: 14px;
}

.arrows button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #071f43;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(7, 31, 67, 0.12);
    transition: 0.3s;
}

.arrows button:hover,
.arrows button.active {
    background: linear-gradient(135deg, #2563eb, #5145ff);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .destinations {
        width: 94%;
        grid-template-columns: 1fr;
        padding: 28px 18px;
    }

    .destination-title h2 {
        font-size: 31px;
    }

    .destination-card-pro {
        flex: 0 0 245px;
    }

    .arrows {
        display: none;
    }
}






/* ================= MODAL DESTINATIONS PREMIUM ================= */

.destinations-modal-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:26px;
    margin-top:35px;
}

.modal-destination-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none;
    transition:0.35s;
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
    border:1px solid #edf2f7;
}

.modal-destination-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.14);
}

.modal-destination-image{
    position:relative;
    height:170px;
    overflow:hidden;
}

.modal-destination-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.modal-destination-card:hover img{
    transform:scale(1.08);
}

.modal-destination-image span{
    position:absolute;
    top:18px;
    left:18px;
    background:linear-gradient(135deg,#ffd21e,#ffb800);
    color:#071f43;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
}

.modal-destination-content{
    padding:18px;
}

.modal-destination-content h3{
    font-size:22px;
    color:#071f43;
    margin-bottom:10px;
    font-weight:900;
}

.modal-country{
    color:#64748b;
    font-size:16px;
    font-weight:700;
    margin-bottom:20px;
}

.modal-destination-price{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.modal-destination-price span{
    color:#64748b;
    font-weight:700;
}

.modal-destination-price strong{
    font-size:22px;
    color:#2563eb;
    font-weight:950;
}






/* ================= MODAL RESERVATION PREMIUM ================= */
.reservation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.78);
    backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 24px;
}

.reservation-overlay.active {
    display: flex;
}

.reservation-box {
    width: min(980px, 96vw);
    background: white;
    border-radius: 34px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    box-shadow: 0 45px 120px rgba(0,0,0,0.45);
    position: relative;
}

.reservation-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #071f43;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
    z-index: 10;
}

.reservation-left {
    background: linear-gradient(135deg, #061b3a, #0b3b7a);
    color: white;
    padding: 55px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-left p {
    color: #ffd21e;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.reservation-left h2 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.reservation-left span {
    background: rgba(255,255,255,0.12);
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 800;
}

.reservation-form {
    padding: 48px;
}

.reservation-form label {
    display: block;
    color: #071f43;
    font-weight: 900;
    margin-bottom: 8px;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    border: 1px solid #dbe3ef;
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 15px;
    outline: none;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

.reservation-form textarea {
    height: 110px;
    resize: none;
}

.form-row,
.passengers-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.passengers-box {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 16px;
}

.reservation-submit {
    width: 100%;
    margin-top: 20px;
    min-height: 58px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffd21e, #ffb800);
    color: #071f43;
    font-size: 16px;
    font-weight: 950;
    cursor: pointer;
}

@media (max-width: 768px) {
    .reservation-box {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }

    .reservation-left {
        padding: 34px 24px;
    }

    .reservation-form {
        padding: 28px 22px;
    }

    .form-row,
    .passengers-box {
        grid-template-columns: 1fr;
    }
}













/* ================= VOYAGES ORGANISÉS ================= */
.organized-trips {
    width: 88%;
    margin: 70px auto 40px;
}

.organized-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-left {
    max-width: 500px;
}

.section-tag {
    font-size: 13px;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #071f43;
    line-height: 1.2;
}

.section-title span {
    color: #3b82f6;
}

.section-btn {
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid #cbd5e1;
    background: white;
    font-weight: 700;
    transition: 0.3s;
}

.section-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.package-carousel {
    position: relative;
    overflow: visible;
}

.package-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.package-track::-webkit-scrollbar {
    display: none;
}

.package-card {
    flex: 0 0 260px;
    background: white;
    border: 1px solid #dbe3ef;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}

.package-img,
.card-slider {
    position: relative;
    height: 150px;
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.card-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.card-slider img.active {
    opacity: 1;
    z-index: 1;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffd21e;
    color: #071f43;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    z-index: 5;
}

.package-body {
    padding: 16px;
}

.package-body h3 {
    font-size: 17px;
    line-height: 1.25;
    color: #071f43;
    margin-bottom: 6px;
}

.city,
.flight {
    font-size: 13px;
    color: #071f43;
    margin-bottom: 8px;
}

.price {
    font-size: 13px;
    color: #071f43;
    text-align: right;
}

.price strong {
    display: block;
    font-size: 22px;
    margin-top: 4px;
}

.package-body small {
    display: block;
    text-align: right;
    color: #64748b;
    font-size: 12px;
    margin-top: 3px;
}

.pay-btn,
.details-btn {
    display: block;
    margin-top: 10px;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
}

.pay-btn {
    background: #f4c542;
    color: #071f43;
}

.details-btn {
    background: #001f4d;
    color: white;
}

.details-btn:hover {
    background: #2563eb;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: #071f43;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    opacity: 1;
    visibility: visible;
    z-index: 20;
}

.carousel-btn.left {
    left: -20px;
}

.carousel-btn.right {
    right: -20px;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ================= AIRLINES ================= */
.airlines-section {
    width: 88%;
    margin: 70px auto 40px;
    background: white;
    padding: 40px 0;
    border-radius: 28px;
    overflow: hidden;
}

.airlines-header {
    padding: 0 35px 30px;
}

.airlines-header h2 {
    font-size: 30px;
    color: #071f43;
    margin-bottom: 8px;
}

.airlines-header p {
    color: #8a94a6;
    font-size: 16px;
}

.airlines-carousel {
    overflow: hidden;
    width: 100%;
}

.airlines-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollAirlines 28s linear infinite;
}

.airlines-carousel:hover .airlines-track {
    animation-play-state: paused;
}

.airline-card {
    min-width: 220px;
    height: 110px;
    background: #f5f8fc;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #071f43;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 15px;
}

.airline-card img {
    max-width: 140px;
    max-height: 55px;
    object-fit: contain;
    margin-bottom: 8px;
}

.airline-card span {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-align: center;
}

@keyframes scrollAirlines {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================= ADVANTAGES ================= */
.advantages {
    width: 100%;
    background: white;
    padding: 45px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
}

.advantages div {
    background: #f8fbff;
    padding: 22px 28px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 15px;
    align-items: center;
}

.advantages i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2776ff;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.advantages p {
    grid-column: 2;
    color: #6b7280;
    font-size: 13px;
    margin-top: -12px;
}

/* ================= FOOTER ================= */
.footer {
    width: 100%;
    background: linear-gradient(135deg, #071f43, #0b2c5f);
    color: #eaf2ff;
    padding: 70px 0 0;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h2,
.footer-col h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    font-size: 14px;
    color: #c9d6f2;
    line-height: 1.7;
}

.footer-col a:hover {
    color: #ffd21e;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col i {
    color: #ffd21e;
    margin-right: 8px;
}

.map iframe {
    border-radius: 12px;
    margin-top: 15px;
}

.socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.socials a:hover {
    background: #ffd21e;
    color: #071f43;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #061a38;
    text-align: center;
    padding: 18px;
    margin-top: 40px;
}

/* ================= MODALS GÉNÉRALES ================= */
.modal-overlay.active{
    display:flex;
}
.auth-modal-overlay,
.destinations-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 31, 67, 0.72);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.destinations-modal-overlay.active {
    display: flex;
}

.auth-modal-large,
.destinations-modal-box {
    width: 100%;
    background: white;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 35px 90px rgba(0,0,0,0.30);
}



.close-modal,
.close-auth,
.destinations-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #071f43;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.close-modal:hover,
.close-auth:hover,
.destinations-modal-close:hover {
    background: #071f43;
    color: white;
    transform: rotate(90deg);
}

.devis-modal h2 {
    font-size: 34px;
    color: #071f43;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 28px;
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.devis-form input,
.devis-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid #dbe3ef;
    outline: none;
    font-size: 15px;
    background: #f9fbff;
}

.devis-form textarea {
    height: 160px;
    resize: none;
}

.devis-form input:focus,
.devis-form textarea:focus {
    border-color: #0bb7e8;
    background: white;
    box-shadow: 0 0 0 4px rgba(11, 183, 232, 0.12);
}

.devis-form button {
    margin-top: 8px;
    background: linear-gradient(135deg, #ffd21e, #ffb800);
    color: #071f43;
    border: none;
    border-radius: 45px;
    padding: 18px;
    font-weight: 900;
    font-size: 15px;
}

/* ================= AUTH MODAL ================= */
.auth-modal-large {
    max-width: 620px !important;
    padding: 34px !important;
    display: block !important;
    overflow: visible !important;
}

.auth-right {
    display: none !important;
}

.auth-left {
    width: 100% !important;
    padding: 0 !important;
}

.auth-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    margin-bottom: 26px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.auth-tab {
    background: transparent !important;
    border: none !important;
    padding: 0 0 14px !important;
    font-weight: 800 !important;
    color: #111827;
    border-bottom: 3px solid transparent !important;
}

.auth-tab.active {
    color: #2563eb !important;
    border-bottom-color: #2563eb !important;
}

.auth-form {
    display: none !important;
}

.auth-form.active {
    display: block !important;
}

.auth-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
}

.auth-input,
.input-group,
.password-field {
    position: relative;
    margin-bottom: 14px;
}

.auth-input i,
.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 2;
}

.auth-input input,
.input-group input {
    width: 100% !important;
    height: 54px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 14px !important;
    padding: 0 16px 0 46px !important;
    font-size: 15px !important;
    background: white !important;
    color: #071f43 !important;
    outline: none !important;
}

.auth-input input:focus,
.auth-phone input[type="tel"]:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
}

.auth-phone {
    width: 100%;
    margin-bottom: 14px !important;
}

.auth-phone .iti {
    width: 100% !important;
    display: block !important;
}

.auth-phone input[type="tel"] {
    width: 100% !important;
    height: 54px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 14px !important;
    padding-left: 105px !important;
    font-size: 15px !important;
    background: white !important;
    color: #071f43 !important;
    outline: none !important;
}

.toggle-password {
    position: absolute !important;
    left: auto !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer;
    color: #64748b;
    z-index: 5;
    display: none;
}

.auth-input.password-field input {
    padding-right: 48px !important;
}

.forgot-link,
.forgot {
    display: block !important;
    text-align: right !important;
    color: #2563eb !important;
    font-size: 14px;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

.auth-submit,
.auth-main-btn {
    width: 100% !important;
    height: 56px !important;
    border: none !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #28a9e8, #3468f6) !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    margin-top: 8px;
}

.google-login,
.google-btn {
    width: 100% !important;
    height: 54px !important;
    border-radius: 14px !important;
    border: 1px solid #cbd5e1 !important;
    background: white !important;
    font-weight: 800 !important;
}

.auth-separator {
    text-align: center;
    margin: 20px 0;
    color: #64748b;
}

.auth-bottom-text {
    margin-top: 20px !important;
    text-align: center !important;
    font-size: 15px;
    color: #64748b;
}

.switch-auth {
    background: transparent !important;
    border: none !important;
    color: #2563eb !important;
    font-weight: 900 !important;
    pointer-events: auto !important;
}

.auth-alert {
    padding: 13px 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 18px;
    text-align: center;
}

.auth-alert.error {
    background: #fee2e2;
    color: #991b1b;
}

.auth-alert.success {
    background: #d1fae5;
    color: #065f46;
}

.auth-input.error input,
.auth-phone.error input {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12) !important;
}

.auth-input.success input,
.auth-phone.success input {
    border-color: #16a34a !important;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12) !important;
}

.auth-error {
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    margin-top: -6px;
    margin-bottom: 10px;
    display: block;
}

/* ================= DESTINATIONS MODAL / PAGE ================= */
.destinations-hero {
    padding: 70px 8% 35px;
    background: linear-gradient(135deg, #061b3a, #0d3d66);
    color: white;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
}

.back-home {
    color: white;
    font-weight: 800;
}

.destinations-hero h1 {
    font-size: 48px;
    margin: 30px 0 10px;
}

.destinations-hero p {
    color: #dbeafe;
    font-size: 18px;
}

.all-destinations {
    padding: 45px 8% 80px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.destination-item {
    height: 310px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 55px rgba(0,0,0,0.13);
    transition: 0.3s;
}

.destination-item:hover {
    transform: translateY(-8px);
}

.destination-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.08));
}

.destination-info {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 24px;
    color: white;
}

.destination-info h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.destinations-modal-box {
    width: min(950px, 95vw);
    max-height: 88vh;
    overflow-y: auto;
    padding: 34px;
}

.destinations-modal-box h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    color: #061b3a;
}

.destinations-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destinations-modal-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.destinations-modal-card:hover {
    transform: translateY(-6px);
}

.destinations-modal-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destinations-modal-card h3 {
    margin: 16px 18px 2px;
    font-size: 22px;
    color: #061b3a;
    text-transform: capitalize;
}

.destinations-modal-card p,
.destinations-modal-card .modal-price {
    margin-left: 18px;
    margin-right: 18px;
}

.destinations-modal-card p {
    margin-top: 0;
    margin-bottom: 8px;
    color: #64748b;
    font-weight: 700;
    text-transform: capitalize;
}

.destinations-modal-card .modal-price {
    margin-top: 8px;
    margin-bottom: 18px;
    color: #0d3d66;
    font-weight: 900;
}

/* ================= DÉTAIL OFFRE ================= */
.details-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fbff, #eef4fb);
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.details-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: white;
    max-width: 1000px;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.details-img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.details-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-content h1 {
    font-size: 32px;
    color: #001f4d;
    margin-bottom: 10px;
}

.details-destination {
    color: #64748b;
    font-weight: 700;
    margin-bottom: 15px;
}

.details-price {
    font-size: 30px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 15px;
}

.details-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #334155;
}

.details-actions {
    display: flex;
    gap: 12px;
}

.details-pay-btn,
.details-devis-btn {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    text-align: center;
    font-weight: 900;
}

.details-pay-btn {
    background: #2563eb;
    color: white;
}

.details-devis-btn {
    background: #f4c542;
    color: #001f4d;
}

/* ================= PETITS COMPOSANTS ================= */
.chat-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #1e6edc, #2f6feb);
    color: white;
    padding: 14px 22px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.chat-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.chat-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-box {
    width: 260px;
    height: 65px;
    margin: 8px 0 10px;
    background: repeating-linear-gradient(45deg, #f1f1f1, #f1f1f1 4px, #ffffff 4px, #ffffff 8px);
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 12px;
}

.extra-person-card {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: #f8fafc;
}

.extra-person-card h3 {
    margin-top: 0;
    color: #071f43;
}

.menu-badge {
    margin-left: auto;
    background: #ef4444;
    color: white;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .navbar { padding: 0 25px; }
    .nav-center { margin-left: 25px; }
    .hero-content { padding: 30px 40px; }
    .hero-text h1 { font-size: 46px; }
    .booking-box { width: 94%; }

    #vols.active,
    #hotels.active,
    .visa-form.active,
    .transfer-form.active {
        grid-template-columns: 1fr 45px 1fr;
        gap: 10px;
    }

    .field,
    .field:first-child {
        border: 1px solid #dbe3ef;
        border-radius: 14px;
    }

    .search-btn {
        margin-left: 0;
        grid-column: 1 / -1;
    }

    .extra-options { grid-column: 1 / -1; }
    .destinations { grid-template-columns: 1fr; }
    .advantages { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .destinations {
        width: 94%;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .destination-title h2 { font-size: 30px; }
    .arrows { display: none; }
    .destination-card-pro { flex: 0 0 230px; }
    .destinations-modal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar {
        height: 75px;
        padding: 0 18px;
    }

    .logo img {
        width: 65px;
        max-width: 65px;
    }

    .nav-center,
    .nav-right {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .mobile-menu {
        position: fixed;
        top: 88px;
        right: 15px;
        width: 280px;
        max-height: 80vh;
        overflow-y: auto;
        background: white;
        border-radius: 18px;
        padding: 16px;
        display: none;
        flex-direction: column;
        gap: 10px;
        z-index: 999999;
        box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }

    .mobile-menu.active {
        display: flex !important;
    }

    .mobile-menu a,
    .mobile-menu button:not(.mobile-menu-close) {
        width: 100%;
        height: 48px;
        background: #f3f6fb;
        color: #071f43;
        border: none;
        border-radius: 12px;
        padding: 0 14px;
        font-weight: 800;
        text-align: left;
        display: flex;
        align-items: center;
        font-size: 15px;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        align-self: flex-end;
        margin-bottom: 8px;
        border-radius: 50%;
        background: #071f43;
        color: white;
        border: none;
        font-size: 26px;
        font-weight: 900;
    }

    .hero {
        height: auto;
        min-height: 640px;
        padding-top: 75px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .hero-content {
        padding: 35px 22px;
        display: block;
    }

    .hero-text h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .subtitle { font-size: 17px; }

    .features {
        flex-direction: column;
        gap: 18px;
        margin-top: 30px;
    }

    .features div {
        border-right: none;
        padding-right: 0;
    }

    .promo-card{

    position:absolute !important;

    top:120px !important;

    right:-160px !important;

    width:360px !important;
    height:430px !important;

    border-radius:34px !important;

    overflow:hidden;

    z-index:20;
}

.promo-slide{
    padding:35px;
}

.promo-slide h3{
    font-size:34px;
    line-height:1.1;
}

.promo-slide p{
    font-size:18px;
    margin-top:10px;
}

.promo-slide small{
    font-size:15px;
}

.promo-slide h2{
    font-size:58px;
    margin-top:18px;
}

.promo-card button{
    width:58px;
    height:58px;
    bottom:20px;
    right:20px;
}

    .booking-box {
        width: 94%;
        margin-top: -60px;
        padding: 18px;
    }

    .tabs {
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
    }

    .tab {
        min-width: 125px;
        padding: 14px 16px;
        font-size: 13px;
    }

    .trip-types {
        overflow-x: auto;
        gap: 24px;
        font-size: 14px;
        white-space: nowrap;
    }

    #vols.active,
    #hotels.active,
    #visas.active,
    #transferts.active,
    .visa-form.active,
    .transfer-form.active {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .swap-btn,
    .carousel-btn {
        display: none !important;
    }

    .field,
    .field:first-child {
        width: 100%;
        border: 1px solid #dbe3ef;
        border-radius: 14px;
    }

    .search-btn {
        width: 100%;
        margin-left: 0;
    }

    .visa-address { grid-column: auto; }

    .travelers-dropdown {
        width: 300px;
        right: auto;
        left: 0;
    }

    .organized-header { display: block; }
    .section-btn { margin-top: 20px; }
    .package-card { flex-basis: 240px; }
    .airlines-section { width: 94%; }
    .airlines-header h2 { font-size: 24px; }
    .airline-card { min-width: 180px; }

    .advantages {
        grid-template-columns: 1fr;
        padding: 35px 5%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .socials { justify-content: center; }

    .devis-modal {
        padding: 28px 20px;
    }

    .form-row,
    .auth-row,
    .details-card {
        grid-template-columns: 1fr !important;
    }

    .details-actions {
        flex-direction: column;
    }

    .chat-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
        font-size: 14px;
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 30px; }
    .booking-box { margin-top: -40px; }
    .destination-title h2 { font-size: 24px; }
    .airlines-header { padding: 0 20px 25px; }
    .mobile-menu { right: 10px; width: calc(100% - 20px); }
}













/* ================= VOYAGES ORGANISÉS PREMIUM ================= */
.premium-trips {
    width: 88%;
    margin: 90px auto 60px;
    padding: 45px;
    background: linear-gradient(135deg, #061b3a, #0b3b7a);
    border-radius: 36px;
    position: relative;
    overflow: visible;
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 35px;
}

.premium-trips .section-tag {
    color: #ffd21e;
}

.premium-trips .section-title {
    color: white;
}

.premium-trips .section-title span {
    color: #ffd21e;
}

.section-subtitle {
    margin-top: 10px;
    color: #dbeafe;
    font-size: 15px;
}

.premium-trips .section-btn {
    background: white;
    color: #071f43;
    border: none;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.premium-carousel {
    position: relative;
}

.premium-carousel .package-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 24px;
}

.premium-carousel .package-track::-webkit-scrollbar {
    display: none;
}

.premium-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: none;
    box-shadow: 0 25px 65px rgba(0,0,0,0.22);
}

.premium-img {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.premium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-img .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffd21e;
    color: #071f43;
    padding: 8px 15px;
    border-radius: 999px;
    font-weight: 900;
    z-index: 2;
}

.premium-body {
    padding: 20px;
}

.trip-category {
    font-size: 12px;
    font-weight: 900;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.premium-body h3 {
    font-size: 21px;
    font-weight: 900;
    color: #071f43;
    margin-bottom: 10px;
}

.premium-body .city {
    color: #64748b;
    font-weight: 800;
    margin-bottom: 18px;
}

.premium-price {
    text-align: left;
    margin-bottom: 18px;
}

.premium-price span {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.premium-price strong {
    display: block;
    color: #071f43;
    font-size: 25px;
    font-weight: 900;
}

.premium-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    z-index: 50;
}

.premium-actions .details-btn,
.premium-actions .pay-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 100;
}

.premium-actions .details-btn {
    border: 2px solid #071f43;
    background: white;
    color: #071f43;
    cursor: pointer;
    pointer-events: auto;
}

.premium-actions .details-btn:hover {
    background: #071f43;
    color: white;
}

.premium-actions .pay-btn {
    border: none;
    background: linear-gradient(135deg, #ffd21e, #ffb800);
    color: #071f43;
}

.empty-message {
    color: white;
    font-weight: 800;
}








/* ================= MODAL OFFRE ULTRA PREMIUM ================= */
.offer-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.82);
    backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.offer-modal-overlay.active {
    display: flex;
}

.offer-modal-box {
    width: min(1180px, 96vw);
    height: min(720px, 90vh);
    background: #ffffff;
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    box-shadow: 0 45px 120px rgba(0,0,0,0.45);
    position: relative;
}

.offer-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #071f43;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
    z-index: 30;
}

.offer-modal-close:hover {
    background: #071f43;
    color: white;
}

/* COLONNE IMAGE */
.offer-gallery {
    background: linear-gradient(135deg, #061b3a, #0b3b7a);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    overflow-y: auto;
}

.offer-main-image {
    height: 340px;
    min-height: 340px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.offer-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-main-image span {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #ffd21e, #ffb800);
    color: #071f43;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 900;
}

.offer-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-bottom: 8px;
}

.offer-thumbs img {
    width: 100%;
    height: 76px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    border: 3px solid rgba(255,255,255,0.25);
    transition: 0.3s;
}

.offer-thumbs img:hover {
    border-color: #ffd21e;
    transform: translateY(-3px);
}

/* COLONNE TEXTE */
.offer-modal-content {
    height: 100%;
    padding: 42px 52px 28px;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,0.08), transparent 35%),
        #ffffff;
    overflow-y: auto;
}

.offer-modal-tag {
    width: fit-content;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.offer-modal-content h2 {
    font-size: 36px;
    line-height: 1.08;
    color: #061b3a;
    margin-bottom: 12px;
}

.offer-modal-destination {
    color: #64748b;
    font-weight: 900;
    margin-bottom: 16px;
}

.offer-modal-content h3 {
    font-size: 34px;
    color: #2563eb;
    font-weight: 950;
    margin-bottom: 18px;
}

.offer-description-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 16px 18px;
    max-height: 135px;
    overflow-y: auto;
}

#modalOfferDescription {
    color: #334155;
    line-height: 1.65;
    font-size: 15px;
}

.offer-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
    padding-bottom: 6px;
}

.modal-reserve-btn,
.modal-devis-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.modal-reserve-btn {
    border: none;
    background: linear-gradient(135deg, #071f43, #2563eb);
    color: white;
    box-shadow: 0 18px 35px rgba(37,99,235,0.28);
}

.modal-devis-btn {
    background: white;
    color: #071f43;
    border: 2px solid #ffd21e;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.modal-reserve-btn:hover,
.modal-devis-btn:hover {
    transform: translateY(-3px);
}

.modal-devis-btn:hover {
    background: #ffd21e;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .offer-modal-box {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 92vh;
        overflow-y: auto;
    }

    .offer-gallery {
        height: auto;
        overflow: visible;
    }

    .offer-modal-content {
        height: auto;
        overflow: visible;
        padding: 32px 24px;
    }

    .offer-main-image {
        height: 260px;
        min-height: 260px;
    }

    .offer-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .offer-thumbs img {
        height: 72px;
    }

    .offer-modal-content h2 {
        font-size: 31px;
    }

    .offer-modal-content h3 {
        font-size: 30px;
    }

    .offer-description-box {
        max-height: 170px;
    }
}










/* ================= PAGE TOUS LES FORFAITS ================= */
.all-packages-page {
    width: 90%;
    margin: 140px auto 60px;
}
.all-packages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.all-packages-header h1 {
    font-size: 48px;
    color: #071f43;
}

.all-packages-header h1 span {
    color: #2563eb;
}

.back-home-btn {
    background: #071f43;
    color: white;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.all-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
}

.all-package-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

.all-package-image {
    position: relative;
    height: 230px;
}

.all-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-package-image span {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #ffd21e;
    color: #071f43;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
}

.all-package-content {
    padding: 24px;
}

.all-package-content h3 {
    font-size: 28px;
    color: #071f43;
    margin-bottom: 12px;
}

.destination {
    color: #64748b;
    font-weight: 800;
    margin-bottom: 18px;
}

.package-price {
    margin-bottom: 22px;
}

.package-price span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.package-price strong {
    color: #2563eb;
    font-size: 34px;
    font-weight: 950;
}

.all-package-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.reserve-btn,
.all-package-actions .details-btn {
    min-height: 52px;
    border-radius: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.reserve-btn {
    background: linear-gradient(135deg, #071f43, #2563eb);
    color: white;
}

.all-package-actions .details-btn {
    border: 2px solid #071f43;
    background: white;
    color: #071f43;
    cursor: pointer;
}

@media (max-width: 768px) {
    .all-packages-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .all-packages-header h1 {
        font-size: 38px;
    }
}



/* ================= RESERVATION PREMIUM ================= */

.reservation-box{
    width:min(1150px,96vw);
    height:92vh;
    background:white;
    border-radius:34px;
    overflow:hidden;
    display:grid;
    grid-template-columns:420px 1fr;
    box-shadow:0 40px 120px rgba(0,0,0,.35);
}

.reservation-left{
    background:
    linear-gradient(180deg,#071f43 0%,#0d3270 100%);
    padding:42px;
    color:white;
    overflow-y:auto;
}

.reservation-left p{
    color:#ffd21e;
    font-weight:900;
    letter-spacing:1px;
}

.reservation-left h2{
    font-size:58px;
    line-height:1;
    margin:18px 0 26px;
}

#reservationOfferName{
    display:flex;
    align-items:center;
    min-height:56px;
    background:rgba(255,255,255,.12);
    border-radius:18px;
    padding:0 20px;
    font-weight:900;
    margin-bottom:30px;
}

/* ================= FORM ================= */

.reservation-form{
    padding:40px;
    overflow-y:auto;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
}

.form-row input,
.passengers-box input,
.reservation-form textarea,
.passenger-item input{
    width:100%;
    border:1px solid #dbe3ef;
    background:#f8fafc;
    border-radius:18px;
    padding:16px;
    font-size:15px;
    outline:none;
}

.reservation-form label{
    display:block;
    margin-bottom:10px;
    font-weight:900;
    color:#071f43;
}

.passengers-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-bottom:20px;
}

.reservation-form textarea{
    min-height:130px;
    resize:none;
}

.reservation-submit{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#ffd21e,#ffb800);
    color:#071f43;
    font-size:20px;
    font-weight:900;
    border-radius:22px;
    padding:18px;
    margin-top:22px;
    cursor:pointer;
    transition:.25s;
}

.reservation-submit:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(255,210,30,.25);
}

/* ================= PAYMENT ================= */

.payment-left > label{
    display:block;
    color:#ffd21e;
    font-weight:900;
    margin-bottom:16px;
}

.payment-options-left{
    display:grid;
    gap:14px;
}

.payment-option input{
    display:none;
}

.payment-options-left .payment-option span{
    min-height:84px;
    border-radius:24px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    color:white;
    display:grid;
    grid-template-columns:72px 1fr;
    align-items:center;
    padding:16px 18px;
    gap:16px;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
}

.payment-options-left .payment-option img{
    width:62px;
    height:42px;
    object-fit:contain;
    background:white;
    border-radius:12px;
    padding:5px;
}

.payment-options-left .payment-option i{
    width:62px;
    height:42px;
    background:white;
    color:#071f43;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.payment-options-left .payment-option input:checked + span{
    background:linear-gradient(135deg,#ffd21e,#ffb800);
    color:#071f43;
    border-color:#ffd21e;
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(255,210,30,.22);
}

/* ================= PASSENGERS ================= */

.passenger-details-box{
    display:grid;
    gap:14px;
    margin-top:10px;
    max-height:280px;
    overflow-y:auto;
    padding-right:5px;
}

.passenger-item{
    background:#f8fafc;
    border:1px solid #dbe3ef;
    border-radius:22px;
    padding:16px;
}

.passenger-item h4{
    margin:0 0 12px;
    color:#071f43;
    font-size:15px;
}

.passenger-item-row{
    display:grid;
    grid-template-columns:1fr 110px;
    gap:12px;
}

/* ================= CLOSE ================= */

.reservation-close{
    position:absolute;
    top:20px;
    right:20px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#eef2f7;
    font-size:28px;
    font-weight:900;
    cursor:pointer;
    z-index:20;
}

/* ================= MOBILE ================= */

@media(max-width:980px){

    .reservation-box{
        grid-template-columns:1fr;
        height:95vh;
        overflow-y:auto;
    }

    .reservation-left{
        padding:30px;
    }

    .reservation-left h2{
        font-size:42px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .passengers-box{
        grid-template-columns:1fr;
    }

    .passenger-item-row{
        grid-template-columns:1fr;
    }
}





.notif-dropdown{
    position:relative;
}

.notif-btn{
    position:relative;
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.12);
    color:white;
    cursor:pointer;
}

.notif-badge{
    position:absolute;
    top:-5px;
    right:-5px;
    min-width:20px;
    height:20px;
    background:#ef4444;
    color:white;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
}

.notif-menu{
    position:absolute;
    top:55px;
    right:0;
    width:340px;
    background:white;
    border-radius:22px;
    box-shadow:0 25px 70px rgba(0,0,0,.18);
    display:none;
    overflow:hidden;
    z-index:99999;
}

.notif-menu.show{
    display:block;
}

.notif-title{
    padding:16px 18px;
    font-weight:950;
    color:#071f43;
    border-bottom:1px solid #eef2f7;
}

.notif-item{
    padding:14px 18px;
    border-bottom:1px solid #eef2f7;
}

.notif-item.unread{
    background:#f0f7ff;
}

.notif-item strong{
    display:block;
    color:#071f43;
    margin-bottom:5px;
}

.notif-item p{
    margin:0 0 6px;
    color:#64748b;
    font-size:13px;
    line-height:1.5;
}

.notif-item small{
    color:#94a3b8;
    font-size:12px;
}

.notif-empty{
    padding:20px;
    color:#64748b;
    font-weight:800;
}




.premium-success-modal{
    position:fixed;
    inset:0;
    background:rgba(2,8,23,.70);
    backdrop-filter:blur(10px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
}

.premium-success-modal.active{
    display:flex;
}

.premium-success-box{
    width:min(500px,92vw);
    background:white;
    border-radius:34px;
    padding:42px 34px;
    text-align:center;
    box-shadow:0 35px 90px rgba(0,0,0,.30);
    animation:popupSuccess .35s ease;
}

@keyframes popupSuccess{
    from{
        opacity:0;
        transform:translateY(20px) scale(.95);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.premium-success-icon{
    width:95px;
    height:95px;
    margin:0 auto 22px;
    border-radius:50%;
    background:linear-gradient(135deg,#16a34a,#22c55e);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:42px;
    box-shadow:0 20px 45px rgba(34,197,94,.25);
}

.premium-success-box h2{
    margin:0 0 14px;
    font-size:32px;
    color:#071f43;
}

.premium-success-box p{
    color:#64748b;
    line-height:1.7;
    font-size:16px;
    font-weight:700;
}

.premium-success-box button{
    margin-top:26px;
    border:none;
    background:linear-gradient(135deg,#071f43,#2563eb);
    color:white;
    padding:16px 34px;
    border-radius:16px;
    font-weight:900;
    cursor:pointer;
    font-size:15px;
    transition:.25s;
}

.premium-success-box button:hover{
    transform:translateY(-2px);
}




.mobile-user-box{
    background:rgba(255,255,255,.12);
    color:white;
    padding:14px 16px;
    border-radius:16px;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.mobile-devis-btn{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#ffd21e,#ffb800);
    color:#071f43;
    padding:14px 16px;
    border-radius:16px;
    font-weight:950;
    margin-top:12px;
}





@media(max-width:900px){

    .mobile-menu{
        position:fixed;
        top:0;
        right:-100%;
        width:72%;
        max-width:300px;
        height:100vh;
        background:linear-gradient(180deg,#071f43,#0f3b82);
        z-index:999999;
        padding:20px 16px;
        display:flex;
        flex-direction:column;
        gap:12px;
        transition:.35s ease;
        box-shadow:-25px 0 70px rgba(0,0,0,.35);
        overflow-y:auto;
    }

    .mobile-menu.active{
        right:0;
    }

    .mobile-menu-close{
        align-self:flex-end;
        width:44px;
        height:44px;
        border:none;
        border-radius:50%;
        background:rgba(255,255,255,.14);
        color:white;
        font-size:28px;
        font-weight:900;
        cursor:pointer;
    }

    .mobile-menu a,
    .mobile-menu button.mobile-link,
    #mobileAuthBtn{
        width:100%;
        border:none;
        background:rgba(255,255,255,.10);
        color:white;
        text-decoration:none;
        padding:15px 16px;
        border-radius:16px;
        font-size:15px;
        font-weight:900;
        display:flex;
        align-items:center;
        gap:10px;
        cursor:pointer;
    }

    .mobile-user-box{
        background:rgba(255,255,255,.16);
        color:white;
        padding:16px;
        border-radius:20px;
        font-weight:950;
        display:flex;
        align-items:center;
        gap:10px;
        border:1px solid rgba(255,255,255,.14);
    }

    .mobile-devis-btn{
        width:100%;
        border:none;
        background:linear-gradient(135deg,#ffd21e,#ffb800);
        color:#071f43;
        padding:16px;
        border-radius:18px;
        font-size:15px;
        font-weight:950;
        cursor:pointer;
        margin-top:8px;
    }
}


.mobile-menu{
    pointer-events:auto !important;
    z-index:999999 !important;
}

.mobile-menu a,
.mobile-menu button{
    pointer-events:auto !important;
    position:relative;
    z-index:999999;
}


.mobile-menu{
    z-index:999999 !important;
}

.mobile-menu a,
.mobile-menu button{
    position:relative;
    z-index:999999;
}



/* CORRECTION DROPDOWNS NAVBAR */
.dropdown-menu.show,
.dropdown-menu.active,
.lang-dropdown.show,
.lang-dropdown.active,
.user-menu-dropdown.show,
.user-menu-dropdown.active,
.notif-menu.show{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
}

/* CORRECTION MODALE DEVIS */
.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(7,31,67,.72);
    backdrop-filter:blur(8px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
    padding:20px;
}

.modal-overlay.active{
    display:flex !important;
}

/* CORRECTION MENU MOBILE */
.mobile-menu{
    z-index:999999 !important;
}

.mobile-menu.active{
    display:flex !important;
}

.mobile-menu a,
.mobile-menu button{
    pointer-events:auto !important;
}





.mobile-logout-btn{
    width:100%;
    background:linear-gradient(135deg,#dc2626,#ef4444) !important;
    color:white !important;
    text-decoration:none;
    padding:15px;
    border-radius:18px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:10px;
}




.forgot-password-link{
    display:block;
    margin:10px 0 14px;
    text-align:right;
    color:#2563eb;
    font-weight:800;
    text-decoration:none;
    font-size:14px;
}

.forgot-password-link:hover{
    text-decoration:underline;
}




.flatpickr-calendar {
    z-index: 999999 !important;
}





/* ===============================
   MODALE DEVIS PREMIUM
================================ */

.devis-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 20, 45, 0.72);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.devis-modal.active {
    display: flex;
}

.devis-modal-box {
    width: 100%;
    max-width: 980px;
    max-height: 94vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 38px 38px 0;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.devis-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #f3f6fb;
    color: #061b3f;
    font-size: 22px;
    cursor: pointer;
}

.devis-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.devis-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b4ec9;
    font-size: 30px;
}

.devis-header h2 {
    margin: 0;
    font-size: 38px;
    color: #061b3f;
    font-weight: 900;
}

.devis-header p {
    margin: 8px 0 0;
    color: #61708a;
    font-size: 16px;
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.devis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.devis-field {
    position: relative;
    background: #fff;
    border: 1px solid #d9e4f2;
    border-radius: 18px;
    height: 66px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    transition: 0.25s ease;
}

.devis-field:focus-within {
    border-color: #0b84ff;
    box-shadow: 0 0 0 4px rgba(11, 132, 255, 0.12);
}

.devis-field i {
    color: #0b4ec9;
    font-size: 20px;
    margin-right: 14px;
    min-width: 22px;
}

.devis-field input,
.devis-field textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #061b3f;
    background: transparent;
    font-family: inherit;
}

.devis-field input::placeholder,
.devis-field textarea::placeholder {
    color: #7a8494;
}

.devis-date-field {
    height: 66px;
}

.devis-message-field {
    height: 145px;
    align-items: flex-start;
    padding-top: 20px;
}

.devis-message-field textarea {
    height: 100%;
    resize: none;
    line-height: 1.5;
}

.devis-submit {
    height: 70px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd21c, #ffad00);
    color: #061b3f;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(255, 180, 0, 0.35);
    transition: 0.25s ease;
}

.devis-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(255, 180, 0, 0.45);
}

.devis-submit i {
    margin-right: 8px;
}

.devis-benefits {
    margin: 34px -38px 0;
    padding: 24px 38px;
    border-top: 1px solid #e6edf7;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    background: #fbfdff;
    border-radius: 0 0 30px 30px;
}

.devis-benefits div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #061b3f;
}

.devis-benefits i {
    font-size: 22px;
    color: #0b4ec9;
    margin-bottom: 5px;
}

.devis-benefits strong {
    font-size: 14px;
}

.devis-benefits span {
    font-size: 13px;
    color: #65748b;
}

/* FLATPICKR DESIGN */
.flatpickr-calendar {
    z-index: 999999 !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18) !important;
    border: 1px solid #e3eaf5 !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .devis-modal {
        padding: 12px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .devis-modal-box {
        max-height: none;
        padding: 28px 18px 0;
        border-radius: 24px;
    }

    .devis-close {
        width: 42px;
        height: 42px;
        top: 14px;
        right: 14px;
    }

    .devis-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    .devis-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .devis-header h2 {
        font-size: 30px;
        line-height: 1.1;
    }

    .devis-header p {
        font-size: 14px;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .devis-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .devis-field {
        height: 58px;
        border-radius: 15px;
    }

    .devis-message-field {
        height: 130px;
    }

    .devis-submit {
        height: 62px;
        font-size: 16px;
    }

    .devis-benefits {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin: 28px -18px 0;
        padding: 18px 10px;
        text-align: center;
    }

    .devis-benefits i {
        font-size: 20px;
        margin: 0 auto 4px;
    }

    .devis-benefits strong {
        font-size: 11px;
    }

    .devis-benefits span {
        display: none;
    }
}

@media (max-width: 480px) {
    .devis-header h2 {
        font-size: 27px;
    }

    .devis-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}









/* FIX FINAL MODALE DEVIS - CENTRAGE PRO */
#devisModal.devis-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(5, 20, 45, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    z-index: 999999 !important;
    padding: 24px !important;
}

#devisModal.devis-modal.active {
    display: flex !important;
}

#devisModal .devis-modal-box {
    width: min(980px, 96vw) !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    margin: auto !important;
    background: #fff !important;
    border-radius: 32px !important;
    padding: 40px !important;
    position: relative !important;
    box-shadow: 0 35px 100px rgba(0,0,0,0.35) !important;
}

@media (max-width: 768px) {
    #devisModal.devis-modal {
        align-items: flex-start !important;
        padding: 12px !important;
        overflow-y: auto !important;
    }

    #devisModal .devis-modal-box {
        width: 100% !important;
        max-height: none !important;
        padding: 24px 18px !important;
        border-radius: 24px !important;
        margin-top: 20px !important;
    }

    #devisModal .devis-grid {
        grid-template-columns: 1fr !important;
    }
}



/* FORCE MOT DE PASSE */

.password-strength {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 20px;
    margin: -4px 0 10px;
    overflow: hidden;
}

#passwordStrengthBar {
    height: 100%;
    width: 0%;
    background: #dc2626;
    transition: 0.3s ease;
}

.password-help {
    display: block;
    margin: -4px 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.password-help.error {
    color: #dc2626;
}

.password-help.success {
    color: #16a34a;
}


.auth-alert.success{
    background:#dcfce7;
    color:#166534;
    padding:14px;
    border-radius:14px;
    font-weight:700;
    margin-bottom:15px;
    text-align:center;
}

.auth-alert.error{
    background:#fee2e2;
    color:#991b1b;
    padding:14px;
    border-radius:14px;
    font-weight:700;
    margin-bottom:15px;
    text-align:center;
}





/* FIX VISA FORM */
#visas.active {
    grid-template-columns: repeat(4, 1fr) !important;
}

#visas .visa-file {
    grid-column: span 2 !important;
}

#visas .search-btn {
    grid-column: span 2 !important;
    width: 100% !important;
}



/* ===== MOBILE BOOKING TABS PRO ===== */

@media (max-width: 768px){

    .booking-tabs{
        display:flex !important;
        flex-wrap:nowrap !important;
        gap:10px !important;

        overflow-x:auto !important;
        overflow-y:hidden !important;

        padding-bottom:6px !important;

        scrollbar-width:none;
    }

    .booking-tabs::-webkit-scrollbar{
        display:none;
    }

    .booking-tab{
        flex:0 0 auto !important;

        min-width:140px !important;
        height:56px !important;

        border-radius:18px !important;

        display:flex !important;
        align-items:center !important;
        justify-content:center !important;

        white-space:nowrap !important;
    }

    .booking-container{
        overflow:hidden !important;
    }

}


/* ===== FIX DROPDOWN PASSAGERS MOBILE ===== */

.booking-container,
.booking-box{
    overflow: visible !important;
}

.travelers-field{
    position: relative !important;
    z-index: 9999 !important;
}

.travelers-dropdown{
    top: 70px !important;
    left: auto !important;
    right: 0 !important;

    width: 320px !important;
    max-width: calc(100vw - 40px) !important;

    z-index: 999999 !important;
}

@media (max-width: 768px){
    .travelers-dropdown{
        left: 0 !important;
        right: auto !important;
        width: 300px !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
    }
}


/* ===== CHAT BUTTON MOBILE DISCRET ===== */

.chat-btn{
    padding: 12px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
}

@media (max-width: 768px){
    .chat-btn{
        width: 54px !important;
        height: 54px !important;
        padding: 0 !important;

        right: 16px !important;
        bottom: 16px !important;

        border-radius: 50% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 0 !important;
        overflow: hidden !important;
    }

    .chat-btn span,
    .chat-btn p,
    .chat-btn strong{
        display: none !important;
    }

    .chat-icon{
        width: 54px !important;
        height: 54px !important;
        margin: 0 !important;
    }

    .chat-icon i{
        font-size: 22px !important;
    }
}









/* ===== DESTINATIONS MOBILE PRO ===== */

@media (max-width: 768px){

    .destinations{
        width: 94% !important;
        margin: 55px auto !important;
        padding: 28px 18px !important;
        border-radius: 28px !important;
    }

    .destination-title h2{
        font-size: 30px !important;
        line-height: 1.18 !important;
    }

    .destinations .cards{
        margin-top: 22px !important;
        gap: 16px !important;
        padding-bottom: 12px !important;
    }

    .destination-card-pro{
        flex: 0 0 230px !important;
        border-radius: 22px !important;
    }

    .destination-img-pro{
        height: 135px !important;
    }

    .destination-info-pro h3{
        font-size: 21px !important;
    }
}



/* ===== HOVER PREMIUM GLOBAL ===== */

.search-btn,
.btn-primary,
.btn-yellow,
button{
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease !important;
}

.search-btn:hover,
.btn-primary:hover,
.btn-yellow:hover{
    transform: translateY(-2px) !important;

    box-shadow:
        0 16px 35px rgba(255,193,7,.28) !important;
}

/* Cards premium */
.destination-card-pro,
.package-card,
.offer-card{
    transition:
        transform .25s ease,
        box-shadow .25s ease !important;
}

.destination-card-pro:hover,
.package-card:hover,
.offer-card:hover{
    transform: translateY(-6px) !important;

    box-shadow:
        0 20px 45px rgba(15,23,42,.12) !important;
}

/* Inputs focus */
.booking-input:focus,
.field input:focus,
.field select:focus{
    border-color: #2563eb !important;

    box-shadow:
        0 0 0 4px rgba(37,99,235,.12) !important;
}



/* ===== VOYAGES ORGANISÉS - VERSION PREMIUM CLAIRE ===== */

.premium-trips{
    background: #f8fafc !important;
    border-radius: 38px !important;
    box-shadow: none !important;
    padding: 55px 38px !important;
}

.premium-trips .section-tag{
    color: #2563eb !important;
}

.premium-trips .section-title{
    color: #071f43 !important;
}

.premium-trips .section-title span{
    color: #f4c542 !important;
}

.premium-trips .section-subtitle{
    color: #64748b !important;
}

.premium-trips .section-btn{
    background: #071f43 !important;
    color: white !important;
    box-shadow: 0 14px 35px rgba(7,31,67,.18) !important;
}

.premium-card{
    box-shadow: 0 18px 45px rgba(15,23,42,.10) !important;
}

.premium-card:hover{
    transform: translateY(-7px) !important;
    box-shadow: 0 28px 65px rgba(15,23,42,.16) !important;
}



/* ===== FORFAITS PREMIUM FINAL ===== */

.premium-trips{
    width: 86% !important;
    margin: 65px auto 70px !important;
    padding: 48px 46px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%) !important;
    border: 1px solid #e8eef7 !important;
    box-shadow: 0 24px 70px rgba(7,31,67,.08) !important;
}

.premium-header{
    margin-bottom: 34px !important;
}

.premium-trips .section-title{
    font-size: 38px !important;
    letter-spacing: -1px !important;
}

.premium-trips .section-subtitle{
    font-size: 15px !important;
}

.premium-carousel .package-track{
    gap: 22px !important;
}

.premium-card{
    flex: 0 0 285px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    background: #fff !important;
    border: 1px solid #e8eef7 !important;
}

.premium-img{
    height: 178px !important;
}

.premium-body{
    padding: 18px !important;
}

.premium-body h3{
    font-size: 20px !important;
    line-height: 1.2 !important;
}

.premium-actions .details-btn,
.premium-actions .pay-btn{
    min-height: 44px !important;
    border-radius: 14px !important;
}


/* ===== ESPACEMENT ACCUEIL PLUS PRO ===== */

.booking-box{
    margin-bottom: 45px !important;
}

.premium-trips{
    margin-top: 45px !important;
}

@media (max-width: 768px){
    .booking-box{
        margin-bottom: 35px !important;
    }

    .premium-trips{
        margin-top: 35px !important;
    }
}






/* ===== IMAGES PREMIUM CARDS ===== */

.premium-img,
.destination-img-pro,
.package-image{
    position: relative !important;
    overflow: hidden !important;
}

.premium-img img,
.destination-img-pro img,
.package-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;

    transition:
        transform .7s ease,
        filter .4s ease !important;
}

.premium-card:hover img,
.destination-card-pro:hover img,
.package-card:hover img{
    transform: scale(1.06) !important;
}

.premium-img::after,
.destination-img-pro::after,
.package-image::after{
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            to top,
            rgba(7,31,67,.28),
            rgba(7,31,67,0)
        ) !important;

    pointer-events: none !important;
}





/* ===== BADGES PREMIUM ===== */

.badge,
.premium-img .badge,
.destination-img-pro span,
.modal-destination-image span{
    background: rgba(255, 210, 30, 0.95) !important;
    color: #071f43 !important;

    padding: 8px 14px !important;
    border-radius: 999px !important;

    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .2px !important;

    box-shadow: 0 10px 24px rgba(255, 184, 0, .28) !important;
    backdrop-filter: blur(8px) !important;
}


/* ===== HERO PREMIUM FINAL ===== */

.hero{
    position: relative !important;
    overflow: hidden !important;
}

.hero::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(7,31,67,.82) 0%,
            rgba(7,31,67,.45) 38%,
            rgba(7,31,67,.10) 100%
        );

    z-index:1;
}

.hero-content{
    position: relative !important;
    z-index:2 !important;

    width:88% !important;
    margin:auto !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    gap:40px !important;
}

.hero-text{
    max-width:620px !important;
}

.hero-text h1{
    font-size:72px !important;
    line-height:0.95 !important;
    letter-spacing:-3px !important;
}

.hero-text p{
    font-size:20px !important;
    line-height:1.6 !important;
    opacity:.95 !important;
}

.promo-card{
    width:300px !important;

    backdrop-filter: blur(14px) !important;

    background:
        rgba(255,255,255,.12) !important;

    border:
        1px solid rgba(255,255,255,.18) !important;
}

/* MOBILE */
@media (max-width:768px){

    .hero-content{
        flex-direction:column !important;
        align-items:flex-start !important;
        padding-top:40px !important;
    }

    .hero-text h1{
        font-size:48px !important;
        line-height:1 !important;
    }

    .hero-text p{
        font-size:17px !important;
    }

    .promo-card{
        width:100% !important;
        max-width:320px !important;
    }
}

.promo-card button{

    width:43px !important;
    height:43px !important;

    bottom:10px !important;
    right:10px !important;

    position:absolute !important;

    z-index:50 !important;

    cursor:pointer;
}

.promo-slide{
    position:relative;
}






/* ===== AIRLINES PREMIUM ===== */

.airline-card{
    transition:all .3s ease;
    border-radius:18px;
}

.airline-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);

    background:#fff;
}

.airline-card img{
    transition:all .3s ease;
}

.airline-card:hover img{
    transform:scale(1.05);
}




/* ===== DESTINATIONS CARDS PREMIUM ===== */

.destination-card-pro{
    background:#fff !important;
    border:1px solid #e8eef7 !important;
    border-radius:26px !important;
    overflow:hidden !important;
    box-shadow:0 18px 45px rgba(7,31,67,.10) !important;
    transition:transform .28s ease, box-shadow .28s ease !important;
}

.destination-card-pro:hover{
    transform:translateY(-7px) !important;
    box-shadow:0 28px 65px rgba(7,31,67,.16) !important;
}

.destination-img-pro{
    height:155px !important;
    overflow:hidden !important;
}

.destination-img-pro::after{
    background:linear-gradient(to top, rgba(7,31,67,.35), transparent) !important;
}

.destination-info-pro{
    padding:18px 20px 22px !important;
}

.destination-info-pro h3{
    font-size:22px !important;
    letter-spacing:-.4px !important;
}

.destination-info-pro p{
    font-size:14px !important;
    color:#64748b !important;
}

.destination-price-pro{
    margin-top:10px !important;
    padding-top:12px !important;
    border-top:1px solid #eef2f7 !important;
}

.destination-price-pro strong{
    color:#071f43 !important;
}







@media (max-width:768px){

    .hero-content{
        position:relative !important;
    }

    .promo-card{

        position:absolute !important;

        top:130px !important;

        right:-40px !important;

        width:190px !important;
        height:250px !important;

        border-radius:24px !important;

        z-index:5 !important;

        overflow:hidden;
    }

    .promo-slide{
        padding:20px !important;
    }

    .promo-slide h3{
        font-size:20px !important;
    }

    .promo-slide p{
        font-size:13px !important;
    }

    .promo-slide h2{
        font-size:42px !important;
    }

}

