/* ==========================================================================
   Ajinsafro Traveler Home — home.css
   Matches the provided mockup: desert hero, search overlay, horizontal
   cards, 2×4 regions grid, 2×2 good-spots grid.
   ========================================================================== */

/* ── RESET inside plugin wrapper ─────────────────────────────────────────── */
.aj-home,
.aj-home *,
.aj-home *::before,
.aj-home *::after { box-sizing: border-box; margin: 0; padding: 0; }
.aj-home img { max-width: 100%; display: block; height: auto; }
.aj-home a   { text-decoration: none; color: inherit; }

.aj-home {
    --aj-brand-dark:   #0e3a5a;
    --aj-brand-blue:   #0083c4;
    --aj-brand-light:  #e6f3fa;
    --aj-brand-orange: #f37a1f;
    --aj-brand-yellow: #ffb300;
    --aj-brand-gray:   #f7f9fc;
    --aj-blue:    #0083c4;
    --aj-blue-d:  #006ba3;
    --aj-orange:  #f37a1f;
    --aj-green:   #3aaa35;
    --aj-red:     #e74c3c;
    --aj-dark:    #1f2937;
    --aj-gray:    #6b7280;
    --aj-light:   #f3f4f6;
    --aj-radius:  15px;
    --aj-shadow:  0 4px 20px rgba(0,0,0,.08);
    --aj-shadow-search: 0 10px 40px -10px rgba(0,0,0,.1);
    font-family: 'Poppins', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--aj-dark);
    line-height: 1.55;
    overflow-x: hidden;
    background-color: transparent;
}

.aj-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Restore container inside .aj-home (reset .aj-home * sets padding:0 and would override this) */
.aj-home .aj-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* ==========================================================================
   0. CUSTOM HEADER (topbar + navbar)
   Header settings managed from Laravel admin /admin/settings/home-page
   Modern AjinSafro Design
   ========================================================================== */

/* Hide theme header on home when custom header is active */
body.aj-custom-header #header,
body.aj-custom-header .site-header,
body.aj-custom-header .topbar,
body.aj-custom-header .header-main,
body.aj-custom-header > header:not(.aj-header),
body.aj-custom-header #masthead {
    display: none !important;
}

.aj-header {
    width: 100%;
    z-index: 1000;
    position: relative;
}

/* ══════════════════════════════════════════════════════════════════════════
   TOPBAR — Dark blue bar with socials, contact, language, currency, auth
   ══════════════════════════════════════════════════════════════════════════ */
.aj-topbar {
    background: #0e3a5a;
    color: rgba(255,255,255,.9);
    font-size: 11px;
    line-height: 1;
}

.aj-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 16px;
}

.aj-topbar__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Social Icons Group */
.aj-topbar__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.aj-topbar__social-link {
    color: rgba(255,255,255,.9);
    transition: color .2s, transform .2s;
}

.aj-topbar__social-link:hover {
    color: #0083c4;
    transform: scale(1.1);
}

/* Contact Info */
.aj-topbar__contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,.2);
}

.aj-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.9);
}

.aj-topbar__item i {
    opacity: .8;
}

/* Right Side */
.aj-topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Selectors (Language, Currency) */
.aj-topbar__selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s;
}

.aj-topbar__selector:hover {
    background: rgba(255,255,255,.1);
}

.aj-topbar__flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
    box-shadow: 0 0 1px rgba(0,0,0,.3);
}

.aj-topbar__caret {
    font-size: 10px;
    opacity: .7;
    margin-left: 2px;
}

/* Auth Links in Topbar */
.aj-topbar__auth {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 12px;
    margin-left: 8px;
    border-left: 1px solid rgba(255,255,255,.2);
}

.aj-topbar__auth-link {
    padding: 6px 12px;
    color: rgba(255,255,255,.9);
    font-weight: 500;
    letter-spacing: .3px;
    border-radius: 4px;
    transition: background .2s, color .2s;
}

.aj-topbar__auth-link:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.aj-topbar__auth-link--signup {
    background: #0083c4;
    color: #fff;
    border-radius: 20px;
    padding: 6px 16px;
}

.aj-topbar__auth-link--signup:hover {
    background: #0095df;
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVBAR — White bar with logo, menu, low-cost button
   ══════════════════════════════════════════════════════════════════════════ */
.aj-navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.aj-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 80px;
}

.aj-navbar__logo {
    flex: 0 0 auto;
}

.aj-navbar__logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.aj-navbar__brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--aj-blue);
}

/* Burger (mobile only) */
.aj-navbar__burger {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 24px;
    color: #4b5563;
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.aj-navbar__burger:hover {
    background: #f3f4f6;
    color: #0083c4;
}

/* Menu list */
.aj-navbar__menu {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.aj-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.aj-nav-list > li {
    position: relative;
}

.aj-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    transition: color .2s, background .2s;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-radius: 8px;
}

.aj-nav-list > li > a i:not(.aj-caret) {
    font-size: 15px;
    color: #9ca3af;
    transition: color .2s;
}

.aj-nav-list > li > a:hover,
.aj-nav-list > li.aj-active > a,
.aj-nav-list > li.current-menu-item > a,
.aj-nav-list > li.current_page_item > a {
    color: #0083c4;
    background: rgba(0,131,196,.06);
}

.aj-nav-list > li > a:hover i:not(.aj-caret),
.aj-nav-list > li.aj-active > a i:not(.aj-caret) {
    color: #0083c4;
}

.aj-caret {
    font-size: 10px;
    opacity: .6;
    margin-left: 4px;
    transition: transform .2s;
}

/* Dropdown */
.aj-sub-menu,
.aj-nav-list .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
}

.aj-has-sub:hover > .aj-sub-menu,
.aj-nav-list > li.menu-item-has-children:hover > .sub-menu,
.aj-has-sub:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aj-has-sub:hover > a .aj-caret {
    transform: rotate(180deg);
}

.aj-sub-menu li a,
.aj-nav-list .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: .84rem;
    color: #374151;
    transition: background .15s, color .15s;
}

.aj-sub-menu li a:hover,
.aj-nav-list .sub-menu li a:hover {
    background: #f3f4f6;
    color: #0083c4;
}

/* ══════════════════════════════════════════════════════════════════════════
   LOW COST BUTTON — Orange gradient with fire icon
   ══════════════════════════════════════════════════════════════════════════ */
.aj-navbar__lowcost {
    flex-shrink: 0;
}

.aj-lowcost-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f37a1f, #ef4444);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(243,122,31,.3);
    transition: transform .2s, box-shadow .2s, filter .2s;
    position: relative;
    overflow: hidden;
}

.aj-lowcost-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,122,31,.4);
    filter: brightness(1.05);
    color: #fff;
}

.aj-lowcost-btn__icon {
    color: #fcd34d;
    animation: aj-fire-pulse 1.5s ease-in-out infinite;
}

@keyframes aj-fire-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Glass shine animation */
.aj-lowcost-btn--animate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-150%) skewX(-25deg);
    animation: aj-glass-shine 3s infinite;
    pointer-events: none;
}

@keyframes aj-glass-shine {
    0% { transform: translateX(-150%) skewX(-25deg); }
    20% { transform: translateX(250%) skewX(-25deg); }
    100% { transform: translateX(250%) skewX(-25deg); }
}

/* Auth links — always visible, never squeezed by menu */
.aj-navbar__auth {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.aj-navbar__auth .aj-auth-link {
    white-space: nowrap;
}

.aj-auth-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--aj-dark);
    padding: 6px 14px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.aj-auth-link:hover {
    color: var(--aj-blue);
}

.aj-auth-link--signup {
    background: var(--aj-blue);
    color: #fff;
}

.aj-auth-link--signup:hover {
    background: var(--aj-blue-d);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════════════════
   DESKTOP (>= 1280px): Full layout
   ══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
    .aj-header__toggle,
    .aj-header__drawer .aj-drawer__header,
    .aj-header__drawer .aj-drawer__auth,
    .aj-header__auth--mobile,
    .aj-drawer__lowcost {
        display: none !important;
    }
    .aj-navbar__inner {
        display: flex !important;
        align-items: center;
        gap: 24px;
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }
    .aj-header__drawer {
        display: flex !important;
        flex: 1;
        min-width: 0;
        position: static;
        width: auto;
        height: auto !important;
        max-height: none !important;
        background: transparent;
        overflow: visible !important;
        transform: none;
        visibility: visible;
        justify-content: center;
    }
    .aj-navbar__menu {
        display: flex !important;
        justify-content: center;
        min-width: 0;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .aj-nav-list {
        flex-wrap: nowrap;
        gap: 4px;
        justify-content: center;
    }
    .aj-header__lowcost--desktop {
        display: flex !important;
        flex-shrink: 0;
    }
}

/* Auth in drawer (block style) */
.aj-auth-link--block {
    display: block;
    text-align: center;
    padding: 12px 16px;
}

/* Drawer: base (desktop) — menu visible inside navbar; header/auth hidden by media above */
.aj-drawer {
    display: flex;
    flex: 1;
    min-width: 0;
}
.aj-drawer__header,
.aj-drawer__auth,
.aj-drawer__lowcost {
    display: none;
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.aj-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px 60px;
}

.aj-hero__media,
.aj-hero__video,
.aj-hero__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aj-hero__media { z-index: 0; overflow: hidden; }
.aj-hero__video { object-fit: cover; }

.aj-hero__iframe {
    border: 0;
    pointer-events: none;
    transform: scale(1.2);
    transform-origin: center center;
}

.aj-hero__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.28);
    z-index: 1;
}

.aj-hero__center {
    position: relative; z-index: 2;
    text-align: center;
    padding: 60px 20px 30px;
}

.aj-hero__title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    font-style: italic;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.4);
    line-height: 1.25;
}

.aj-hero__sub {
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: rgba(255,255,255,.92);
    margin-top: 6px;
    text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.aj-hero__cta-wrap { margin-top: 18px; }

.aj-hero__cta {
    display: inline-block;
    padding: 10px 18px;
    background: var(--aj-orange);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    transition: background .2s;
}

.aj-hero__cta:hover { background: #cf6310; color: #fff; }

/* ── 2. FLOATING SEARCH BAR ───────────────────────────────────────────── */
.aj-search-float {
    position: relative;
    margin: -80px auto 0;
    width: 91.67%;
    max-width: 1024px;
    z-index: 20;
}

.aj-search-card {
    background: #fff;
    border-radius: var(--aj-radius);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,.1);
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all .3s ease;
}

.aj-search-native {
    background: #fff;
    border-radius: var(--aj-radius);
    box-shadow: 0 4px 24px rgba(0,0,0,.14);
    padding: 14px;
}

.aj-search-native * {
    max-width: 100%;
}

.aj-search-native .container,
.aj-search-native .st-search-form,
.aj-search-native .search-form,
.aj-search-native form {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Tabs */
.aj-search__tabs {
    display: flex;
    background: #f0f1f3;
    border-radius: var(--aj-radius) var(--aj-radius) 0 0;
    overflow-x: auto;
}

.aj-tab {
    flex: 0 0 auto;
    padding: 12px 22px;
    border: none;
    background: transparent;
    font-size: .88rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, color .2s;
    border-radius: var(--aj-radius) var(--aj-radius) 0 0;
}

.aj-tab:hover { background: #e4e5e7; color: var(--aj-blue); }

.aj-tab--on {
    background: var(--aj-orange);
    color: #fff;
}
.aj-tab--on:hover { background: #cf6310; color: #fff; }

/* Form row */
.aj-search__form {
    display: flex;
    align-items: center;
    padding: 0;
    border-top: 1px solid #eee;
}

.aj-sf {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    flex: 1 1 0;
    min-width: 0;
}

.aj-sf__ico { flex-shrink: 0; display: flex; }

.aj-sf__txt { display: flex; flex-direction: column; min-width: 0; }
.aj-sf__txt small { font-size: .7rem; color: #999; text-transform: uppercase; letter-spacing: .3px; font-weight: 600; }
.aj-sf__txt input {
    border: none; outline: none; background: transparent;
    font-size: .88rem; color: var(--aj-dark);
    padding: 2px 0; width: 100%;
}
.aj-sf__txt input::placeholder { color: #aaa; }

.aj-sep { width: 1px; height: 36px; background: #e0e0e0; flex-shrink: 0; display: block; }

.aj-sf--more { flex: 0 0 auto; }
.aj-more-btn {
    border: 1px solid var(--aj-blue); background: transparent;
    color: var(--aj-blue); padding: 6px 16px; border-radius: 6px;
    font-size: .82rem; font-weight: 600; cursor: pointer;
    white-space: nowrap;
}
.aj-more-btn:hover { background: var(--aj-blue); color: #fff; }

.aj-search__btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--aj-blue); color: #fff; border: none;
    padding: 0 28px; height: 100%; min-height: 58px;
    font-size: .95rem; font-weight: 700; cursor: pointer;
    border-radius: 0 0 var(--aj-radius) 0;
    white-space: nowrap;
    transition: background .2s;
}
.aj-search__btn:hover { background: var(--aj-blue-d); }

/* ==========================================================================
   3. OFFRES DE DERNIÈRE MINUTE
   ========================================================================== */
.aj-lm {
    padding: 20px 0 24px;
    background: transparent;
}

.aj-lm__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.aj-section-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin: 0;
}

.aj-section-title--green { color: var(--aj-green); }

.aj-lm__badge {
    background: var(--aj-blue);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.aj-lm__nav {
    margin-left: auto;
    display: flex;
    gap: 6px;
}

.aj-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #555;
    transition: border-color .2s, color .2s;
}
.aj-arrow:hover { border-color: var(--aj-blue); color: var(--aj-blue); }

/* Slider track */
.aj-lm__slider { overflow: hidden; }

.aj-lm__track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 8px;
}
.aj-lm__track::-webkit-scrollbar { display: none; }

/* Card */
.aj-card {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 280px;
    scroll-snap-align: start;
}

.aj-card__a {
    display: block;
    background: #fff;
    border-radius: var(--aj-radius);
    overflow: hidden;
    box-shadow: var(--aj-shadow);
    transition: transform .22s, box-shadow .22s;
}
.aj-card__a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.13);
}

.aj-card__top {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #ddd;
}

.aj-card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.aj-card__ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#ccc,#aaa);
}

.aj-card__badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--aj-red);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    text-transform: capitalize;
}

.aj-card__bot {
    padding: 14px 16px 16px;
}

.aj-card__loc {
    display: block;
    font-size: .78rem;
    color: var(--aj-gray);
    margin-bottom: 4px;
}

.aj-card__title {
    font-size: .98rem;
    font-weight: 600;
    color: var(--aj-dark);
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aj-card__desc {
    font-size: .82rem;
    color: var(--aj-gray);
    line-height: 1.45;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aj-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.aj-card__stars { display: flex; gap: 1px; }
.aj-s { font-style: normal; font-size: .92rem; }
.aj-s--on   { color: #ffc107; }
.aj-s--half { color: #ffc107; opacity: .55; }
.aj-s--off  { color: #ddd; }

.aj-card__price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--aj-orange);
    white-space: nowrap;
}

/* ==========================================================================
   4. DESTINATIONS PAR RÉGION
   ========================================================================== */
.aj-regions {
    /* padding: 20px 0 24px; */
    background: transparent;
}

.aj-regions .aj-section-title { margin-bottom: 12px; }

.aj-regions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.aj-reg {
    position: relative;
    display: block;
    border-radius: var(--aj-radius);
    overflow: hidden;
    height: 160px;
    box-shadow: var(--aj-shadow);
    transition: transform .22s, box-shadow .22s;
}
.aj-reg:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.aj-reg__img {
    width: 100% !important; height: 100% !important;
    object-fit: cover;
    transition: transform .35s;
}
.aj-reg:hover .aj-reg__img { transform: scale(1.05); }

.aj-reg__ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#b0c4de,#7a9cc6);
}

.aj-reg__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
    background: linear-gradient(transparent 30%, rgba(0,0,0,.35) 100%);
}

/* ==========================================================================
   5. LES BONS COINS
   ========================================================================== */
.aj-spots {
    padding: 20px 0 24px;
    background: transparent;
}

.aj-spots .aj-section-title { margin-bottom: 12px; }

.aj-spots__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.aj-spot {
    position: relative;
    display: block;
    border-radius: var(--aj-radius);
    overflow: hidden;
    height: 220px;
    box-shadow: var(--aj-shadow);
    transition: transform .22s, box-shadow .22s;
}
.aj-spot:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.aj-spot__img {
    width: 100% !important; height: 100% !important;
    object-fit: cover;
    transition: transform .35s;
}
.aj-spot:hover .aj-spot__img { transform: scale(1.05); }

.aj-spot__ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#d4a574,#a67c52);
}

.aj-spot__ov {
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.55) 100%);
}

.aj-spot__t {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.aj-spot__s {
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    margin: 4px 0 0;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ==========================================================================
   6. FOOTER NEWSLETTER + PAYMENT ICONS
   ========================================================================== */
.aj-footer-nl {
    padding: 24px 0 24px;
    background: rgba(255, 255, 255, 0.85);
    border-top: 1px solid #eee;
}

.aj-footer-nl__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.aj-fnl-col__h {
    font-size: .92rem;
    font-weight: 700;
    color: var(--aj-dark);
    margin: 0 0 14px;
    text-transform: none;
}

.aj-fnl-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aj-fnl-col__list li {
    margin-bottom: 8px;
}

.aj-fnl-col__list a {
    font-size: .82rem;
    color: var(--aj-gray);
    transition: color .2s;
}

.aj-fnl-col__list a:hover {
    color: var(--aj-blue);
}

/* Newsletter box */
.aj-nl-box {
    background: var(--aj-light);
    border-radius: var(--aj-radius);
    padding: 24px;
    position: relative;
}

.aj-nl-box__ico {
    position: absolute;
    top: -18px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.aj-nl-box__h {
    font-size: .95rem;
    font-weight: 700;
    color: var(--aj-blue);
    margin: 0 0 6px;
}

.aj-nl-box__p {
    font-size: .78rem;
    color: var(--aj-gray);
    margin: 0 0 14px;
    line-height: 1.5;
}

.aj-nl-box__form {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.aj-nl-box__form input[type="email"] {
    flex: 1;
    border: 1px solid #ddd;
    border-right: none;
    padding: 10px 14px;
    font-size: .85rem;
    outline: none;
    border-radius: 6px 0 0 6px;
    background: #fff;
    color: var(--aj-dark);
}

.aj-nl-box__form input[type="email"]::placeholder {
    color: #aaa;
}

.aj-nl-box__form button {
    flex-shrink: 0;
    padding: 10px 22px;
    background: var(--aj-green);
    color: #fff;
    border: none;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    letter-spacing: .3px;
    transition: background .2s;
}

.aj-nl-box__form button:hover {
    background: #2e9429;
}

/* Payment bar */
.aj-payments {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #eee;
    text-align: center;
}

.aj-payments__txt {
    font-size: .78rem;
    color: var(--aj-gray);
    margin: 0 0 12px;
}

.aj-payments__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.aj-pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 700;
    color: #555;
    background: #fff;
    letter-spacing: .3px;
}

/* ==========================================================================
   7. BACKGROUND PATTERN — Islamic geometric pattern on left/right margins only
   body::before = pattern layer (fixed, covers entire page)
   body::after  = white center overlay to hide pattern in content area
   ========================================================================== */
body.aj-has-bg-pattern {
    background-color: #f8fafc;
    position: relative;
}

/* Pattern layer — covers entire page */
body.aj-has-bg-pattern::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('https://i.ibb.co/4n5PwWsV/vecteezy-islamic-geometric-pattern-art-illustration-vector-14002298.jpg');
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.2;
    z-index: -2;
    pointer-events: none;
}

/* White center overlay — hides pattern in content area, shows on margins */
body.aj-has-bg-pattern::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1320px;
    max-width: calc(100vw - 80px);
    height: 100vh;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 1) 3%, 
        rgba(255, 255, 255, 1) 97%, 
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
    pointer-events: none;
}

/* Responsive: adjust center overlay width */
@media (max-width: 1400px) {
    body.aj-has-bg-pattern::after {
        width: calc(100vw - 120px);
        max-width: calc(100vw - 60px);
    }
}

@media (max-width: 768px) {
    body.aj-has-bg-pattern::after {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 20px);
    }
    body.aj-has-bg-pattern::before {
        background-size: 200px;
        opacity: 0.15;
    }
}

.aj-home-wrap {
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

.aj-home {
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* ==========================================================================
   8. ANIMATIONS — Glass shine, fade-in, ribbon
   ========================================================================== */
@keyframes aj-fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes aj-glass-shine {
    0%   { transform: translateX(-150%) skewX(-25deg); }
    100% { transform: translateX(250%) skewX(-25deg); }
}
.aj-fade-in { animation: aj-fadeIn .3s ease-in-out; }

.aj-hover-glass {
    position: relative;
    overflow: hidden;
}
.aj-hover-glass::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-150%) skewX(-25deg);
    pointer-events: none;
    z-index: 20;
}
.aj-hover-glass:hover::after {
    animation: aj-glass-shine .8s ease-in-out forwards;
}

.aj-ribbon {
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    overflow: hidden;
    z-index: 10;
}
.aj-ribbon span {
    position: absolute;
    display: block;
    width: 120px;
    padding: 4px 0;
    background-color: var(--aj-brand-orange, #f37a1f);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    left: -10px;
    top: 18px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* ==========================================================================
   9. MODERN SEARCH TABS — Dark tabbed search widget
   ========================================================================== */
.aj-search-tabs {
    display: flex;
    overflow-x: auto;
    background: var(--aj-brand-dark, #0e3a5a);
    font-size: .8rem;
    font-weight: 600;
    scrollbar-width: none;
}
.aj-search-tabs::-webkit-scrollbar { display: none; }

.aj-search-tab {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background .3s;
}
.aj-search-tab:hover { background: rgba(255,255,255,.1); }
.aj-search-tab i { opacity: .8; }

.aj-search-tab--active {
    background: var(--aj-brand-orange, #f37a1f);
}
.aj-search-tab--active:hover {
    background: var(--aj-brand-orange, #f37a1f);
}

.aj-search-forms { padding: 8px 12px; }

.aj-search-form {
    display: none;
}
.aj-search-form--active {
    display: flex;
    flex-direction: column;
    animation: aj-fadeIn .3s ease-in-out;
}

.aj-search-form__row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--aj-radius);
    overflow: hidden;
}

.aj-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    cursor: text;
    transition: background .15s;
}
.aj-search-field:hover { background: #f9fafb; }
.aj-search-field + .aj-search-field {
    border-left: 1px solid #f3f4f6;
}

.aj-search-field__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: transform .15s;
}
.aj-search-field:hover .aj-search-field__icon { transform: scale(1.1); }

.aj-search-field__icon--orange { background: #fff7ed; color: var(--aj-brand-orange, #f37a1f); }
.aj-search-field__icon--blue   { background: #eff6ff; color: var(--aj-brand-blue, #0083c4); }
.aj-search-field__icon--purple { background: #faf5ff; color: #9333ea; }
.aj-search-field__icon--green  { background: #f0fdf4; color: #16a34a; }
.aj-search-field__icon--red    { background: #fef2f2; color: #ef4444; }
.aj-search-field__icon--pink   { background: #fdf2f8; color: #db2777; }
.aj-search-field__icon--gray   { background: #f9fafb; color: #6b7280; }

.aj-search-field__content { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.aj-search-field__label {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 2px;
}
.aj-search-field__input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--aj-brand-dark, #0e3a5a);
    width: 100%;
    padding: 0;
    font-family: inherit;
}
.aj-search-field__input::placeholder { color: #d1d5db; }
.aj-search-field__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--aj-brand-dark, #0e3a5a);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.aj-search-field__caret { color: #d1d5db; font-size: 12px; margin-left: 8px; }

.aj-search-submit {
    padding: 8px;
    flex-shrink: 0;
}
.aj-search-submit__btn {
    width: 100%;
    min-width: 160px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--aj-brand-blue, #0083c4), #00b4db);
    color: #fff;
    border: none;
    border-radius: var(--aj-radius);
    font-size: .95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,131,196,.25);
    transition: filter .2s, box-shadow .2s;
}
.aj-search-submit__btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0,131,196,.35);
}

/* ==========================================================================
   10. MODERN CARD V2 — Mockup card design with DHS price, VOIR L'OFFRE
   ========================================================================== */
.aj-card2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}
.aj-card2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.13);
}

.aj-card2__image {
    position: relative;
    height: 176px;
    overflow: hidden;
}
.aj-card2__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.aj-card2:hover .aj-card2__image img { transform: scale(1.1); }

.aj-card2__badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.aj-card2__badge--info {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    color: var(--aj-brand-blue, #0083c4);
    border: 1px solid rgba(0,131,196,.1);
}
.aj-card2__badge--urgent {
    background: #ef4444;
    color: #fff;
}
.aj-card2__badge--promo {
    background: #16a34a;
    color: #fff;
}

.aj-card2__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aj-card2__title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
}

.aj-card2__desc {
    font-size: 10px;
    color: #9ca3af;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
}

.aj-card2__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #6b7280;
    margin-bottom: 8px;
}
.aj-card2__location i { color: var(--aj-brand-blue, #0083c4); }

.aj-card2__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.aj-card2__category {
    font-size: 10px;
    font-weight: 700;
    color: var(--aj-brand-orange, #f37a1f);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.aj-card2__stars {
    display: flex;
    gap: 1px;
    font-size: 10px;
    color: var(--aj-brand-yellow, #ffb300);
}

.aj-card2__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

.aj-card2__price-label {
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
}
.aj-card2__price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--aj-brand-dark, #0e3a5a);
    line-height: 1;
    display: flex;
    align-items: baseline;
    letter-spacing: -1px;
}
.aj-card2__price-currency {
    font-size: 12px;
    font-weight: 700;
    margin-left: 4px;
}
.aj-card2__price-note {
    font-size: 8px;
    color: #9ca3af;
    margin-top: 4px;
    font-weight: 500;
    font-style: italic;
}
.aj-card2__cta {
    display: inline-block;
    background: var(--aj-brand-orange, #f37a1f);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
    text-decoration: none;
}
.aj-card2__cta:hover {
    background: #cc4800;
    color: #fff;
}

/* ==========================================================================
   11. ACCOMMODATIONS SECTION — "Découvrez des séjours uniques"
   ========================================================================== */
.aj-accom { padding: 20px 0 24px; }

/* ==========================================================================
   12. DESTINATIONS NEW LAYOUT — Featured tile + 2-line carousel
   ========================================================================== */
.aj-dest-new {
    display: flex;
    gap: 16px;
}

.aj-dest-featured {
    width: 25%;
    min-width: 200px;
    position: relative;
    border-radius: var(--aj-radius);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    min-height: 300px;
}
.aj-dest-featured img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.aj-dest-featured:hover img { transform: scale(1.1); }

.aj-dest-featured__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
.aj-dest-featured:hover .aj-dest-featured__overlay {
    background: rgba(0,0,0,.3);
}

.aj-dest-featured__info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.aj-dest-featured__flag {
    width: 32px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.2);
}
.aj-dest-featured__name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aj-dest-carousel {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.aj-dest-carousel::-webkit-scrollbar { display: none; }

.aj-dest-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 16px;
    height: 400px;
}

.aj-dest-tile {
    min-width: 200px;
    position: relative;
    border-radius: var(--aj-radius);
    overflow: hidden;
    cursor: pointer;
}
.aj-dest-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.aj-dest-tile:hover img { transform: scale(1.1); }

.aj-dest-tile__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    transition: background .3s;
}
.aj-dest-tile:hover .aj-dest-tile__overlay {
    background: rgba(0,0,0,.3);
}

.aj-dest-tile__info { display: flex; align-items: center; gap: 12px; }
.aj-dest-tile__flag {
    width: 28px; height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.2);
}
.aj-dest-tile__name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ==========================================================================
   13. GOOD SPOTS V2 — 4-column grid with FA icons overlay
   ========================================================================== */
.aj-spots2__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.aj-spot2 {
    position: relative;
    display: block;
    border-radius: var(--aj-radius);
    overflow: hidden;
    height: 208px;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s;
}
.aj-spot2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.aj-spot2 img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.aj-spot2:hover img { transform: scale(1.1); }

.aj-spot2__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    transition: background .3s;
}
.aj-spot2:hover .aj-spot2__overlay { background: rgba(0,0,0,.3); }

.aj-spot2__icon {
    font-size: 2rem;
    color: var(--aj-brand-orange, #f37a1f);
    margin-bottom: 12px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.2));
}

.aj-spot2__title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 4px;
}

.aj-spot2__subtitle {
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 500;
    margin: 0;
}

/* ==========================================================================
   14. PROMOTIONAL BANNERS — "Destinations de ce mois"
   Force visible: section exists in DOM but can be hidden by theme/overflow.
   ========================================================================== */
.aj-promos {
    position: relative;
    z-index: 2;
    padding: 20px 0 24px;
    margin-top: 0;
    background-color: transparent;
    overflow: visible;
    scroll-margin-top: 24px;
}

.aj-promos .aj-container {
    padding-top: 0;
}

.aj-promos .aj-section-title {
    margin: 0 0 12px;
    padding-top: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--aj-blue, #0083c4);
    line-height: 1.35;
    min-height: 1.35em;
    display: block;
}

.aj-promos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.aj-promo-card {
    display: block;
    position: relative;
    border-radius: 12px;
    padding: 24px;
    color: #fff;
    overflow: hidden;
    height: 208px;
    min-height: 208px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    cursor: pointer;
    transition: transform .3s;
    text-decoration: none;
}
.aj-promo-card:hover { transform: translateY(-4px); }

.aj-promo-card--blue {
    background: linear-gradient(135deg, #42a5f5, #0277bd);
}
.aj-promo-card--orange {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}
.aj-promo-card--dark-blue {
    background: linear-gradient(135deg, #0288d1, #01579b);
}

.aj-promo-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.aj-promo-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}

.aj-promo-card__text {
    font-size: 11px;
    opacity: .95;
    line-height: 1.5;
    margin: 0;
    max-width: 65%;
}

.aj-promo-card__deco {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: .9;
}

/* RTL: Arabic promo cards — direction, unicode-bidi, alignment, font, padding/margin, icon */
.aj-promo-card--rtl {
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
    /* padding 24px from base; symmetric, works in RTL */
}
.aj-promo-card--rtl .aj-promo-card__badge {
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right;
    align-self: flex-end;
    margin-inline-start: 0;
    margin-inline-end: 0;
    margin-block-end: 12px;
}
.aj-promo-card--rtl .aj-promo-card__title {
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right;
    line-height: 1.5;
    margin: 0 0 8px;
    margin-block-end: 8px;
    width: 100%;
    padding: 0;
}
.aj-promo-card--rtl .aj-promo-card__text {
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
/* RTL: position icon on the “start” side (right in RTL) */
.aj-promo-card--rtl .aj-promo-card__deco--box {
    left: auto;
    right: 24px;
    inset-inline-start: auto;
    inset-inline-end: 24px;
    bottom: 16px;
}

.aj-promo-card__deco--cards {
    display: flex;
    gap: 0;
    transform: rotate(-10deg);
    bottom: -16px;
    right: -8px;
}

.aj-deco-card {
    width: 96px;
    height: 128px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}
.aj-deco-card--green {
    background: #22c55e;
    transform: rotate(-15deg) translateY(16px);
}
.aj-deco-card--orange {
    background: #f97316;
    transform: rotate(-5deg);
    z-index: 1;
    margin-left: -48px;
}
.aj-deco-card--blue {
    background: #60a5fa;
    transform: rotate(5deg) translateY(-8px);
    z-index: 2;
    margin-left: -48px;
}

.aj-promo-card__deco--wallet {
    top: 16px;
    right: 16px;
    bottom: auto;
    font-size: 4rem;
}
.aj-promo-card__deco--wallet i {
    color: rgba(0,0,0,.15);
}

.aj-promo-card__deco--box {
    bottom: 16px;
    left: 24px;
    right: auto;
    font-size: 3.5rem;
    color: #ffb300;
}

/* ==========================================================================
   15. WHATSAPP BANNER — same container and vertical rhythm as .aj-lm / .aj-regions
   ========================================================================== */
.aj-whatsapp-banner {
    display: block;
    visibility: visible;
    position: relative;
    padding: 20px 0 24px;
    margin: 0;
    background: transparent;
    overflow: visible;
}

.aj-whatsapp-banner__wrap {
    position: relative;
    background: #1a6b3e;
    border-radius: var(--aj-radius);
    overflow: hidden;
    padding: 36px 32px 40px;
    box-shadow: var(--aj-shadow);
}

/* Decoration dots (top-right / bottom-left) — inside container so aligned with content */
.aj-whatsapp-banner__dots {
    position: absolute;
    display: flex;
    gap: 8px;
    z-index: 1;
}
.aj-whatsapp-banner__dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
}
.aj-whatsapp-banner__dots--tr {
    top: 12px;
    right: 14px;
}
.aj-whatsapp-banner__dots--bl {
    bottom: 12px;
    left: 14px;
}

.aj-whatsapp-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.aj-whatsapp-banner__content {
    flex: 1;
    min-width: 0;
}

.aj-whatsapp-banner__title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Slanted orange subtitle badge */
.aj-whatsapp-banner__subtitle-wrap {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.aj-whatsapp-banner__subtitle {
    display: inline-block;
    background: #ffa500;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 20px 6px 16px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    letter-spacing: 0.3px;
}

.aj-whatsapp-banner__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.aj-whatsapp-banner__features li {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aj-whatsapp-banner__features li i {
    color: #ffa500;
    font-size: 0.9rem;
}

.aj-whatsapp-banner__button {
    display: inline-block;
    padding: 13px 36px;
    background: #ffa500;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aj-whatsapp-banner__button:hover {
    background: #e69400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
    color: #fff;
}

/* QR code wrapper with orange frame corners */
.aj-whatsapp-banner__qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.aj-whatsapp-banner__qr {
    position: relative;
    padding: 16px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
/* Orange corner accents */
.aj-whatsapp-banner__qr::before,
.aj-whatsapp-banner__qr::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #ffa500;
    border-style: solid;
}
.aj-whatsapp-banner__qr::before {
    top: -4px;
    left: -4px;
    border-width: 4px 0 0 4px;
}
.aj-whatsapp-banner__qr::after {
    bottom: -4px;
    right: -4px;
    border-width: 0 4px 4px 0;
}

.aj-whatsapp-banner__qr-img {
    width: 160px;
    height: 160px;
    display: block;
}

.aj-whatsapp-banner__qr-label {
    margin-top: 0;
    background: #ffa500;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 24px;
    border-radius: 0 0 4px 4px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   16. CRUISES SECTION
   ========================================================================== */
.aj-cruises {
    position: relative;
    padding: 20px 0 24px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: transparent;
    overflow: visible;
}

/* Custom sections (admin-defined) — same vertical rhythm */
.aj-home .aj-section.aj-custom-section {
    padding: 20px 0 24px;
    margin: 0;
}

.aj-cruises__inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-height: 300px;
}

.aj-cruises__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.aj-cruises__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aj-cruises__content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    background: linear-gradient(90deg, rgba(14, 58, 90, 0.95) 0%, rgba(14, 58, 90, 0.7) 50%, rgba(14, 58, 90, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 300px;
}

.aj-cruises__title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.aj-cruises__button {
    display: inline-block;
    padding: 14px 40px;
    background: #0083c4;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 131, 196, 0.3);
}

.aj-cruises__button:hover {
    background: #006ba1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 131, 196, 0.4);
    color: #fff;
}

/* ==========================================================================
   17. FOOTER V2 — Updated with payment images
   ========================================================================== */
.aj-footer-v2 {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-top: 1px solid #f3f4f6;
    padding-top: 32px;
    margin-top: 28px;
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,255,255,0) 100%), url('https://i.ibb.co/C59XXd4K/footer.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%, 100% auto;
}

.aj-footer-v2__cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 32px;
}

.aj-footer-v2__heading {
    font-size: .875rem;
    font-weight: 700;
    color: var(--aj-brand-blue, #0083c4);
    margin: 0 0 16px;
}

.aj-footer-v2__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aj-footer-v2__list li { margin-bottom: 8px; }
.aj-footer-v2__list a {
    font-size: .75rem;
    color: #6b7280;
    font-weight: 500;
    transition: color .2s;
}
.aj-footer-v2__list a:hover { color: var(--aj-brand-blue, #0083c4); }

.aj-footer-v2__legal {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.8;
    font-weight: 500;
}

.aj-footer-v2__nl-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.aj-footer-v2__nl-header i {
    font-size: 1.8rem;
    color: var(--aj-brand-blue, #0083c4);
}
.aj-footer-v2__nl-title {
    font-size: .875rem;
    font-weight: 700;
    color: var(--aj-brand-orange, #f37a1f);
    margin: 0 0 4px;
}
.aj-footer-v2__nl-desc {
    font-size: 10px;
    color: #6b7280;
    margin: 0;
}

.aj-footer-v2__nl-form {
    display: flex;
    margin-top: 16px;
}
.aj-footer-v2__nl-form input[type="email"] {
    flex: 1;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 8px 12px;
    font-size: .75rem;
    outline: none;
    font-family: inherit;
    color: #374151;
}
.aj-footer-v2__nl-form input[type="email"]:focus {
    border-color: var(--aj-brand-blue, #0083c4);
}
.aj-footer-v2__nl-form button {
    flex-shrink: 0;
    background: var(--aj-brand-blue, #0083c4);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 8px 16px;
    font-size: .75rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}
.aj-footer-v2__nl-form button:hover {
    background: var(--aj-brand-dark, #0e3a5a);
}

.aj-payments-v2 {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}
.aj-payments-v2__label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 16px;
}
.aj-payments-v2__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.aj-payments-v2__icons img {
    height: 20px;
    object-fit: contain;
    opacity: .9;
    transition: transform .2s;
}
.aj-payments-v2__icons img:hover { transform: scale(1.1); }
.aj-payments-v2__text-badge {
    height: 32px;
    display: flex;
    align-items: center;
    background: #f9fafb;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: .75rem;
    font-weight: 900;
    color: var(--aj-brand-orange, #f37a1f);
    transition: transform .2s;
}
.aj-payments-v2__text-badge:hover { transform: scale(1.1); }

/* ==========================================================================
   16. SECTION HEADERS — Arrows + title row
   ========================================================================== */
.aj-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.aj-section-head .aj-section-title {
    white-space: nowrap;
    margin: 0;
}

.aj-section-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}
.aj-section-arrow {
    width: 40px; height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    transition: color .2s, border-color .2s, box-shadow .2s;
    font-size: .9rem;
}
.aj-section-arrow:hover {
    color: var(--aj-brand-blue, #0083c4);
    border-color: var(--aj-brand-blue, #0083c4);
    box-shadow: 0 2px 8px rgba(0,131,196,.1);
}

/* ==========================================================================
   17. SLIDER V2 — Horizontal snap carousel
   ========================================================================== */
.aj-slider-v2 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
}
.aj-slider-v2::-webkit-scrollbar { display: none; }

.aj-slider-v2__item {
    flex: 0 0 calc(25% - 12px);
    min-width: 260px;
    scroll-snap-align: start;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .aj-card { flex: 0 0 calc(50% - 11px); }
    .aj-regions__grid { grid-template-columns: repeat(3, 1fr); }
    .aj-footer-nl__grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    .aj-nav-list > li > a { padding: 8px 8px; font-size: 12px; }

    .aj-promos__grid { grid-template-columns: 1fr; }
    .aj-spots2__grid { grid-template-columns: repeat(2, 1fr); }
    .aj-dest-new { flex-direction: column; }
    .aj-dest-featured { width: 100%; min-height: 250px; }
    .aj-dest-grid { height: 350px; }
    .aj-slider-v2__item { flex: 0 0 calc(50% - 8px); }
    .aj-footer-v2__cols { grid-template-columns: 1fr 1fr; }
}

/* Tablet + Medium (< 1280px): hamburger + drawer; auth in drawer only */
@media (max-width: 1279.98px) {
    .aj-header__lowcost--desktop { display: none !important; }
    .aj-header__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
    .aj-header__drawer {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        z-index: 9999;
        background: #fff;
        overflow: hidden;
        transform: translateX(100%);
        transition: transform .3s ease, visibility .3s;
        visibility: hidden;
    }
    body.menu-open .aj-header__drawer {
        display: flex !important;
        flex-direction: column;
        transform: translateX(0);
        visibility: visible;
    }
    .aj-drawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        padding: 16px 20px;
        min-height: 64px;
        border-bottom: 1px solid #f3f4f6;
        background: #fff;
    }
    .aj-drawer__title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
    }
    .aj-drawer__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        background: transparent;
        font-size: 1.5rem;
        line-height: 1;
        color: #6b7280;
        cursor: pointer;
        border-radius: 8px;
        transition: background .2s, color .2s;
    }
    .aj-drawer__close:hover { 
        background: #f3f4f6;
        color: #1f2937;
    }
    .aj-drawer__auth {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 16px 20px;
        flex-shrink: 0;
        border-bottom: 1px solid #f3f4f6;
        background: #fafafa;
    }
    .aj-drawer__auth .aj-auth-link--block { margin: 0; min-width: 0; }
    
    /* Low cost button in drawer */
    .aj-drawer__lowcost {
        display: block !important;
        padding: 16px 20px;
        border-top: 1px solid #f3f4f6;
        background: #fafafa;
    }
    .aj-drawer__lowcost .aj-lowcost-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    /* Scroll uniquement dans le drawer ouvert (mobile), pas dans la navbar */
    .aj-header__drawer .aj-navbar__menu {
        display: block !important;
        position: static;
        flex: 1;
        min-height: 0;
        padding: 12px 0 24px;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }
    body.menu-open .aj-header__drawer .aj-navbar__menu {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .aj-nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
    }
    .aj-nav-list > li { border-bottom: 1px solid rgba(0,0,0,.06); }
    .aj-nav-list > li > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 14px 20px;
        font-size: .95rem;
        border-radius: 0;
    }
    .aj-nav-list > li > a i:not(.aj-caret) {
        width: 20px;
        text-align: center;
    }
    .aj-nav-list > li > a .aj-caret {
        margin-left: auto;
    }
    .aj-nav-list .aj-caret { transition: transform .2s; }
    .aj-nav-list > li.aj-sub-open > a .aj-caret,
    .aj-nav-list > li.menu-item-has-children.aj-sub-open > a .aj-caret { transform: rotate(180deg); }
    .aj-nav-list > li.menu-item-has-children > a::after {
        content: '\25BE';
        font-size: .65rem;
        opacity: .5;
        margin-left: auto;
        transition: transform .2s;
    }
    .aj-nav-list > li.menu-item-has-children.aj-sub-open > a::after { transform: rotate(180deg); }
    .aj-sub-menu,
    .aj-nav-list .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #f9fafb;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
        padding: 0;
        margin: 0;
    }
    .aj-nav-list > li.aj-sub-open > .aj-sub-menu,
    .aj-nav-list > li.aj-sub-open > .sub-menu,
    .aj-nav-list > li.menu-item-has-children.aj-sub-open > .sub-menu {
        max-height: 400px;
    }
    .aj-sub-menu li a,
    .aj-nav-list .sub-menu li a {
        padding: 12px 20px 12px 52px;
        font-size: .88rem;
    }
}

/* Mobile: topbar compact, navbar 64px, hero spacing, WhatsApp banner, Cruises */
@media (max-width: 768px) {
    .aj-whatsapp-banner__wrap {
        padding: 24px 20px 28px;
    }
    .aj-whatsapp-banner__inner {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    .aj-whatsapp-banner__title {
        font-size: 1.2rem;
    }
    .aj-whatsapp-banner__subtitle-wrap {
        justify-content: center;
    }
    .aj-whatsapp-banner__subtitle {
        font-size: 0.9rem;
    }
    .aj-whatsapp-banner__features {
        text-align: left;
    }
    .aj-whatsapp-banner__qr-wrap {
        align-items: center;
    }
    .aj-whatsapp-banner__qr {
        max-width: 180px;
    }
    .aj-cruises__content {
        padding: 40px 24px;
        text-align: center;
        align-items: center;
        background: linear-gradient(180deg, rgba(14, 58, 90, 0.95) 0%, rgba(14, 58, 90, 0.8) 100%);
    }
    .aj-cruises__title {
        font-size: 2rem;
    }
    .aj-topbar__inner {
        flex-wrap: nowrap;
        gap: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .aj-topbar__left { gap: 8px; min-width: 0; }
    .aj-topbar__socials { gap: 8px; font-size: 12px; }
    .aj-topbar__contact { display: none; }
    .aj-topbar__item { font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
    .aj-topbar__right { gap: 4px; flex-shrink: 0; }
    .aj-topbar__selector { padding: 4px 6px; font-size: 10px; }
    .aj-topbar__flag { width: 14px; height: 10px; }
    .aj-topbar__auth { display: none; }
    .aj-navbar__inner { min-height: 64px; height: 64px; padding-left: 16px; padding-right: 16px; gap: 12px; }
    .aj-navbar__logo { flex-shrink: 0; }
    .aj-navbar__logo-img { max-height: 32px; }
    .aj-hero { min-height: 340px; padding: 60px 12px 50px; }
    .aj-search-float { width: 94%; margin-top: -60px; }
    .aj-search__tabs { overflow-x: auto; }
    .aj-tab { padding: 10px 14px; font-size: .8rem; }
    .aj-search__form { flex-wrap: wrap; }
    .aj-sf { flex: 1 1 100%; border-bottom: 1px solid #eee; }
    .aj-sep { display: none; }
    .aj-search__btn { width: 100%; justify-content: center; border-radius: 0 0 var(--aj-radius) var(--aj-radius); min-height: 50px; }
    .aj-lm,
    .aj-regions,
    .aj-spots,
    .aj-promos,
    .aj-whatsapp-banner,
    .aj-cruises,
    .aj-accom,
    .aj-home .aj-section.aj-custom-section { padding: 16px 0 20px; }
    .aj-footer-v2 { margin-top: 24px; padding-top: 24px; }
    .aj-card { flex: 0 0 82%; min-width: 260px; }
    .aj-regions__grid { grid-template-columns: repeat(2, 1fr); }
    .aj-spots__grid { grid-template-columns: 1fr; }
    .aj-spot { height: 180px; }
    .aj-footer-nl__grid { grid-template-columns: 1fr; }
    .aj-fnl-col--nl { order: -1; }

    .aj-search-form__row { flex-direction: column; }
    .aj-search-field + .aj-search-field { border-left: none; border-top: 1px solid #f3f4f6; }
    .aj-search-submit { width: 100%; }
    .aj-search-submit__btn { width: 100%; min-width: unset; }
    .aj-slider-v2__item { flex: 0 0 80%; min-width: 260px; }
    .aj-spots2__grid { grid-template-columns: 1fr; }
    .aj-promos__grid { grid-template-columns: 1fr; overflow-x: auto; scroll-snap-type: x mandatory; display: flex; gap: 16px; padding-bottom: 16px; }
    .aj-promo-card { flex: 0 0 85%; min-width: 280px; scroll-snap-align: center; }
    .aj-dest-grid { height: 300px; }
    .aj-footer-v2__cols { grid-template-columns: 1fr; }
}

/* Small Mobile: hide more elements */
@media (max-width: 640px) {
    .aj-topbar__socials {
        gap: 6px;
        font-size: 11px;
    }
    .aj-topbar__selector span {
        display: none;
    }
    .aj-topbar__selector {
        padding: 4px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .aj-topbar__left { flex-direction: row; gap: 6px; align-items: center; }
    .aj-topbar__item { max-width: 120px; }

    .aj-hero {
        min-height: 280px;
        padding: 50px 10px 40px;
    }
    .aj-search-float { margin-top: -40px; }
    .aj-hero__title { font-size: 1.6rem; }
    .aj-hero__sub   { font-size: .95rem; }

    .aj-card { flex: 0 0 90%; }
    .aj-regions__grid { grid-template-columns: 1fr 1fr; }
    .aj-reg { height: 130px; }
    .aj-reg__label { font-size: .8rem; }
}

/* ==========================================================================
   SITE-WIDE FOOTER — Hide WP theme footer, show custom footer everywhere
   ========================================================================== */
body.aj-custom-footer #footer,
body.aj-custom-footer footer:not(.aj-footer-v2),
body.aj-custom-footer .site-footer,
body.aj-custom-footer .footer-wrapper,
body.aj-custom-footer .footer-widget-area,
body.aj-custom-footer #colophon,
body.aj-custom-footer .footer,
body.aj-custom-footer .st-footer,
body.aj-custom-footer .footer-top,
body.aj-custom-footer .footer-bottom,
body.aj-custom-footer .footer__main,
body.aj-custom-footer [class*="footer"]:not(.aj-footer-v2):not(.aj-footer-v2 *):not([class*="aj-"]) {
    display: none !important;
}

.aj-footer-sitewide {
    font-family: 'Poppins', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1f2937;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
.aj-footer-sitewide *,
.aj-footer-sitewide *::before,
.aj-footer-sitewide *::after { box-sizing: border-box; }
.aj-footer-sitewide a { text-decoration: none; color: inherit; }
.aj-footer-sitewide img { max-width: 100%; display: block; height: auto; }

/* ==========================================================================
   VOYAGES PAGE
   ========================================================================== */
.aj-voyages-page { background: #f8fafc; }

.aj-voyages-hero {
    padding: 32px 0 18px;
}

.aj-voyages-search-header {
    padding: 32px 0 24px;
}

.aj-voyages-title {
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
    font-weight: 800;
    color: #0e3a5a;
}

.aj-voyages-subtitle {
    margin-top: 6px;
    color: #6b7280;
    font-size: .98rem;
}

.aj-voyages-search {
    margin-top: 18px;
}

.aj-voyages-results {
    padding: 12px 0 48px;
}

.aj-voyages-results__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.aj-voyages-results__count {
    color: #6b7280;
    font-weight: 600;
    font-size: .9rem;
}

.aj-voyages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.aj-voyages-grid__item .aj-card2 {
    display: block;
    height: 100%;
}

.aj-voyages-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 210px;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.aj-voyages-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.aj-voyages-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #334155;
    font-weight: 600;
    transition: all .2s ease;
}

.aj-voyages-pagination .page-numbers.current,
.aj-voyages-pagination .page-numbers:hover {
    background: #0083c4;
    border-color: #0083c4;
    color: #fff;
}

.aj-voyages-empty {
    padding: 48px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #475569;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .aj-voyages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .aj-voyages-results__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .aj-voyages-grid {
        grid-template-columns: 1fr;
    }
}
.aj-voyages-hero__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.aj-voyages-vols-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0083c4;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}

.aj-voyages-vols-link:hover {
    background: #006ba1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 131, 196, 0.3);
}

@media (max-width: 768px) {
    .aj-voyages-hero__header {
        flex-direction: column;
    }
}

/* ==========================================================================
   VOLS PAGE
   ========================================================================== */
.aj-vols-page { background: #f8fafc; }

.aj-vols-hero {
    padding: 32px 0 18px;
}

.aj-vols-search-header {
    padding: 32px 0 24px;
}

.aj-vols-title {
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
    font-weight: 800;
    color: #0e3a5a;
}

.aj-vols-subtitle {
    margin-top: 6px;
    color: #6b7280;
    font-size: .98rem;
}

.aj-vols-search {
    margin-top: 18px;
}

.aj-vols-search-form {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.aj-vols-search-fields {
    display: flex;
    gap: 12px;
    align-items: center;
}

.aj-vols-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.aj-vols-search-field i {
    color: #0083c4;
    font-size: 18px;
}

.aj-vols-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
}

.aj-vols-search-btn {
    padding: 12px 24px;
    background: #0083c4;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aj-vols-search-btn:hover {
    background: #006ba1;
}

.aj-vols-results {
    padding: 12px 0 48px;
}

.aj-vols-results__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.aj-vols-results__count {
    color: #6b7280;
    font-weight: 600;
    font-size: .9rem;
}

.aj-vols-list {
    display: grid;
    gap: 16px;
}

.aj-flight-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all .2s ease;
}

.aj-flight-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.aj-flight-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.aj-flight-card__type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.aj-flight-card__type.aller {
    background: #dbeafe;
    color: #1e40af;
}

.aj-flight-card__type.retour {
    background: #fef3c7;
    color: #92400e;
}

.aj-flight-card__number {
    color: #6b7280;
    font-size: 14px;
}

.aj-flight-card__route {
    display: flex;
    align-items: center;
    gap: 24px;
}

.aj-flight-card__city {
    flex: 1;
}

.aj-flight-card__city strong {
    display: block;
    font-size: 18px;
    color: #0e3a5a;
    margin-bottom: 4px;
}

.aj-flight-card__city i {
    margin-right: 8px;
    color: #0083c4;
}

.aj-flight-card__datetime {
    font-size: 13px;
    color: #6b7280;
}

.aj-flight-card__arrow {
    color: #0083c4;
    font-size: 24px;
}

.aj-vols-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.aj-vols-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #334155;
    font-weight: 600;
    transition: all .2s ease;
}

.aj-vols-pagination .page-numbers.current,
.aj-vols-pagination .page-numbers:hover {
    background: #0083c4;
    border-color: #0083c4;
    color: #fff;
}

.aj-vols-empty {
    padding: 48px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #475569;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .aj-vols-search-fields {
        flex-direction: column;
    }

    .aj-vols-search-btn {
        width: 100%;
        justify-content: center;
    }

    .aj-flight-card__route {
        flex-direction: column;
        gap: 12px;
    }

    .aj-flight-card__arrow {
        transform: rotate(90deg);
    }

    .aj-whatsapp-banner__wrap {
        padding: 24px 20px 28px;
    }
    .aj-whatsapp-banner__inner {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    .aj-whatsapp-banner__title {
        font-size: 1.2rem;
    }
    .aj-whatsapp-banner__subtitle-wrap {
        justify-content: center;
    }
    .aj-whatsapp-banner__subtitle {
        font-size: 0.9rem;
    }
    .aj-whatsapp-banner__features {
        text-align: left;
    }
    .aj-whatsapp-banner__qr-wrap {
        align-items: center;
    }
    .aj-whatsapp-banner__qr {
        max-width: 180px;
    }
    .aj-cruises__content {
        padding: 40px 24px;
        text-align: center;
        align-items: center;
        background: linear-gradient(180deg, rgba(14, 58, 90, 0.95) 0%, rgba(14, 58, 90, 0.8) 100%);
    }
    .aj-cruises__title {
        font-size: 2rem;
    }
}