
/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-name {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.brand-name .blue,
.brand-name .orange {
    color: #FF5C1A;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header-chip {
    cursor: pointer;
    min-height: 35px;
    padding: 0 15px;
    border: 1px solid #1d1d1d;
    border-radius: 30px;
    background: #fff;
    color: #1d1d1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    transform: translateY(0);
    box-shadow: none;
    transition: background-color 0.1s ease, color 0.1s,  border-color 0.1s ease;
}

.header-chip:hover,
.header-chip:focus,
.header-chip:active {
    background: #1B1B1B;
    color: #fff;
    border-color: #1B1B1B;
    box-shadow: none;
    transform: translateY(0);
}

.header-chip i {
    line-height: 1;
}

.header-chip:hover i,
.header-chip:focus i,
.header-chip:active i {
    color: #fff;
}

        :root {
            --blue: #FF8A3D;
            --dark: #1b1b1b;
            --blue-soft: #FFF1E8;
            --orange: #FF8A3D;
            --orange-dark: #F37422;
            --bg: #F7F9FC;
            --hero-bg: rgb(247,247,247);
            --white: #FFFFFF;
            --text: #1F2D3D;
            --muted: #6F7C8E;
            --muted-dark: #5B6573;
            --line: #E7ECF3;
            --line-dark: #D8DEE8;
            --shadow: 0 12px 35px rgba(22, 52, 95, 0.10);
            --soft-shadow: 0 10px 24px rgba(0,0,0,0.08);
        }

        * {
            box-sizing: border-box;
            color: #1B1B1B;
        }

        html, body {
            margin: 0;
            padding: 0;
            font-family: Inter, Arial, sans-serif;
            background: white;
            color: var(--text);
        }

        body {
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: min(1000px, calc(100% - 40px));
            margin: 0 auto;
        }

        .hero {
            background: #fff;
            padding: 0 0 40px;
        }

        .hero-top-band {
            width: 100%;
            background: linear-gradient(
                to bottom,
                rgb(254, 254, 254) 0%,
                rgb(249, 249, 249) 100%
            );
            padding: 0 0 36px;
        }

        .hero-inner {
            position: relative;
        }

        .hero-top {
            width: 100%;
            padding: 50px 0 0;
        }

        .hero h1 {
            margin: 0 0 10px;
            font-size: clamp(2rem, 4vw, 3.3rem);
            line-height: 1.08;
            letter-spacing: -0.05em;
            color: #1b1b1b;
            font-weight: 900;
            text-align: center;
        }

        .hero p {
            margin: 0 auto;
            font-size: 1.12rem;
            line-height: 1.65;
            color: #1b1b1b;
            max-width: 760px;
            text-align: center;
        }

        .hero-search-wrap {
            margin-top: 28px;
            position: relative;
            z-index: 15;
        }

        .hero-search.simple.inside-button {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fff;
            border: 1px solid #dcdcdc;
            border-radius: 999px;
            padding: 9px 10px 9px 20px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.10);
            overflow: visible;
        }

        .search-block.single {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 0;
            min-width: 0;
        }

        .search-icon-box {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #1b1b1b;
            opacity: 0.8;
            cursor: pointer;
        }

        .search-text {
            display: flex;
            flex-direction: column;
            min-width: 0;
            width: 100%;
        }

        .search-label {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .search-input-wrap {
            position: relative;
            flex: 1;
            min-width: 0;
            width: 100%;
        }

        .search-value,
        .search-input-wrap input {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            color: #111111;
            font-size: 1rem;
            font-weight: 700;
            padding: 0;
            line-height: 1.35;
        }

        .search-input-wrap input::placeholder {
            color: #7b7b7b;
            font-weight: 500;
        }

        .fake-input {
            display: block;
            color: #111111;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.35;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .btn-search {
            flex-shrink: 0;
            border: 1px solid #FF5C1A;
            outline: none;
            background: #FF5C1A;
            color: #fff;
            font-size: 1rem;
            font-weight: 800;
            cursor: pointer;
            transition: 0.2s ease;
            border-radius: 999px;
            height: 55px;
            padding: 0 34px;
            min-width: 200px;
            box-shadow: inset 0 -2px 0 rgba(0,0,0,0.08);
        }

        .btn-search:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.10);
        }

        .suggestions {
            position: absolute;
            top: calc(100% + 16px);
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.99);
            border: 1px solid rgba(231,236,243,0.98);
            box-shadow: 0 18px 40px rgba(22, 52, 95, 0.16);
            border-radius: 30px;
            overflow: hidden;
            z-index: 50;
            display: none;
            text-align: left;
        }

        .suggestion-item {
            width: 100%;
            padding: 15px 18px;
            border: none;
            background: transparent;
            display: flex;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            text-align: left;
            transition: background 0.18s ease;
        }

        .suggestion-item:hover,
        .suggestion-item.active {
            background: var(--blue-soft);
        }

        .suggestion-main {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .suggestion-sub {
            font-size: 0.92rem;
            color: var(--muted);
        }

        .hero-benefits {
            margin-top: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            color: #1b1b1b;
            font-size: 0.96rem;
            font-weight: 600;
        }

        .hero-benefits span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-map-wrap {
            background: #fff;
            padding-top: 28px;
            padding-bottom: 20px;
        }

        .preview-card {
            margin-top: 0;
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            min-height: 420px;
            position: relative;
        }

        .preview-center {
            position: relative;
            min-height: 520px;
            background: #f8f8f8;
            overflow: hidden;
        }

        .preview-center h2 {
            max-width: 360px;
            margin: 0;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.08;
            letter-spacing: -0.04em;
            color: #111;
            font-weight: 850;
            position: relative;
            z-index: 3;
        }

        .map-scene {
            position: absolute;
            inset: 0;
            z-index: 1;
            border-radius: 0;
            overflow: hidden;
            background: linear-gradient(180deg, #F5FAFF 0%, #EAF4FF 100%);
        }

        #map {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .map-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            background:
                linear-gradient(to bottom, rgba(248,248,248,0.20), rgba(248,248,248,0.10)),
                linear-gradient(to top, rgba(248,248,248,0.18), rgba(248,248,248,0.04));
        }

        .reveal-ui {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 6;
            text-align: center;
            pointer-events: none;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }

        .reveal-ui.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .reveal-box {
            pointer-events: auto;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.72);
            color: #111;
            padding: 18px 18px;
            border-radius: 28px;
            backdrop-filter: blur(10px);
            box-shadow: 0 16px 35px rgba(0,0,0,0.16);
            width: 360px;
            max-width: calc(100vw - 40px);
            min-height: 132px;
            transition:
                opacity 0.4s ease,
                transform 0.4s ease,
                width 0.45s ease,
                min-height 0.45s ease,
                border-radius 0.45s ease,
                padding 0.45s ease;
        }

        .reveal-box.countdown-mode {
            width: 108px;
            min-height: 108px;
            padding: 0;
            border-radius: 999px;
        }

        .reveal-box.fade-out {
            opacity: 0;
            transform: scale(0.95);
        }

        .reveal-stage {
            position: relative;
            width: 100%;
            min-height: 96px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;;
            transition: min-height 0.35s ease;
        }
.reveal-box {
    overflow: hidden;
}

.reveal-box.transport-mode {
    min-height: 260px;
}

.reveal-stage.is-transport-mode {
    min-height: 250px;
}

@media (max-width: 768px) {
    .reveal-box.transport-mode {
        min-height: 320px;
    }

    .reveal-stage.is-transport-mode {
        min-height: 310px;
    }
}

@media (max-width: 560px) {
    .reveal-box.transport-mode {
        min-height: 285px;
    }

    .reveal-stage.is-transport-mode {
        min-height: 270px;
    }
}
        #introText {
            margin: 0;
            font-size: 1.02rem;
            font-weight: 800;
            line-height: 1.35;
            text-align: center;
            color: #111;
            max-width: 280px;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .countdown-text {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: #111;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .countdown-text.show {
            opacity: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            padding: 0 22px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            font-size: 0.98rem;
            font-weight: 700;
            transition: 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-1px);
        }

        .btn-reveal {
            min-height: 52px;
            padding: 0 22px;
            border-radius: 30px;
            border: none;
            background: #1b1b1b;
            color: #fff;
            box-shadow: 0 10px 24px rgba(0,0,0,0.18);
            position: relative;
            z-index: 2;
        }

        .reveal-stage h2 {
            padding: 0 16px;
            font-size: 1.02rem;
            font-weight: 800;
            text-align: center;
            opacity: 1;
            pointer-events: none;
            top: -28px;
            height: auto;
            inset: auto 0 auto 0;
        }

        .plane {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 40px;
            z-index: 8;
            display: none;
            pointer-events: none;
            will-change: transform, opacity;
            transform: translate3d(-120px, 62vh, 0);
        }

        .plane.fly {
            display: block;
            animation: flyInside 2.8s linear forwards;
        }

        @keyframes flyInside {
            from {
                transform: translate3d(-120px, 260px, 0);
            }
            to {
                transform: translate3d(calc(100vw + 120px), 110px, 0);
            }
        }

        .boarding {
            position: absolute;
            right: 24px;
            bottom: 24px;
            width: 320px;
            max-width: calc(100% - 32px);
            background: rgba(255,255,255,0.96);
            border: 1px solid rgba(231,236,243,0.95);
            border-radius: 30px;
            padding: 22px;
            box-shadow: 0 20px 40px rgba(22, 52, 95, 0.18);
            z-index: 7;
            display: none;
            text-align: left;
        }

        .boarding h3 {
            margin: 0 0 16px;
            color: var(--dark);
            font-size: 1.2rem;
        }

        .boarding p {
            margin: 8px 0;
            color: var(--muted);
            line-height: 1.5;
        }

        .boarding strong {
            color: var(--dark);
        }

        .section {
            padding: 50px 0;
        }

        @media (max-width: 780px) {
            .section { padding: 36px 0; }
        }

        @media (max-width: 560px) {
            .section { padding: 26px 0; }
        }

        .section-title {
            text-align: center;
            margin-bottom: 26px;
        }

        .section-title h2 {
            margin: 0 0 10px;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            line-height: 1.1;
            letter-spacing: -0.04em;
            color: var(--dark);
        }

        .section-title p {
            margin: 0;
            color: var(--muted);
            font-size: 1.02rem;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .step-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 30px;
            padding: 28px;
            box-shadow: 0 10px 30px rgba(22, 52, 95, 0.05);
        }

        .step-icon {
            width: 64px;
            height: 64px;
            border-radius: 30px;
            display: grid;
            place-items: center;
            margin-bottom: 18px;
            background: linear-gradient(135deg, rgba(255,138,61,0.10), rgba(243,116,34,0.16));
            color: var(--blue);
            font-size: 1.5rem;
        }

        .step-card h3 {
            margin: 0 0 10px;
            font-size: 1.28rem;
            color: var(--dark);
        }

        .step-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }

        .step-number {
            display: inline-flex;
            margin-top: 18px;
            padding: 8px 12px;
            border-radius: 999px;
            background: var(--blue-soft);
            color: var(--blue);
            font-size: 0.88rem;
            font-weight: 700;
        }
        
/* ========================
   SECTION MOMENT UNIQUE
======================== */

/* ══════════════════════════════════════
   PRICING SECTION — fond blanc 2 colonnes
   ══════════════════════════════════════ */
.pricing-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #fff;
}

#faq .section-title {
    margin-bottom: 48px;
}

.pricing-section .section-title {
    margin-bottom: 48px;
}

.pricing-section .section-title h2 {
    color: #111;
}

.pricing-section .section-title h2 span {
    color: #FF5C1A;
}

.pricing-section .section-title p {
    color: #888;
}

/* Layout 2 colonnes */
.pricing-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid #ebebeb;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    max-width: 810px;
    margin: 0 auto;
}

/* Colonne gauche — prix + CTA */
.pricing-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px 36px;
    background: #07070f;
    border-right: none;
    position: relative;
    overflow: hidden;
}

/* Lueur orange — même ADN que show.blade.php */
.pricing-left::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 120% 60% at 50% 30%, rgba(255,92,26,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(255,140,60,0.07) 0%, transparent 60%);
}

/* Grille subtile */
.pricing-left::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

/* Contenu au-dessus des pseudo-éléments */
.pricing-left > * { position: relative; z-index: 1; }

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255,92,26,0.18);
    border: 1px solid rgba(255,138,61,0.25);
    font-size: 1.35rem;
}

.pricing-icon i {
    color: #FF8A3D;
}

.pricing-left-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-price span {
    display: block;
    color: #fff;
    font-size: clamp(3.4rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
}

.pricing-price small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    font-weight: 600;
}

.pricing-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 20px auto;
}

.pricing-guarantee {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
}

.pricing-btn {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 14px;
    background: #FF5C1A;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 20px rgba(255,92,26,0.35);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
}

.pricing-btn:hover {
    background: #e04a08;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,92,26,0.4);
}

.pricing-btn:active {
    transform: translateY(0);
}

/* Colonne droite — avantages */
.pricing-right {
    flex: 1;
    padding: 40px 36px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-right-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #aaa;
    margin-bottom: 22px;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pricing-features li .feat-text {
    flex: 1;
    min-width: 0;
}

.pricing-features li .feat-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255,92,26,0.09);
    border: 1px solid rgba(255,92,26,0.14);
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    color: #FF5C1A;
    margin-top: 1px;
}

.pricing-features li .feat-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.pricing-features li .feat-text > span {
    display: block;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.45;
    margin-top: 2px;
}

@media (max-width: 700px) {
    .pricing-layout {
        flex-direction: column;
    }
    .pricing-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #222;
    }
    .pricing-right {
        padding: 28px 24px;
    }
}

@media (max-width: 560px) {
    .pricing-section {
        padding: 56px 0;
    }

    .pricing-card {
        padding: 26px 22px;
        border-radius: 26px;
    }
}

        .faq-wrap {
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(22, 52, 95, 0.05);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            border: none;
            background: transparent;
            padding: 22px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            text-align: left;
            cursor: pointer;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
        }

        .faq-question:hover {
            background: rgb(250,250,250);
        }

        .faq-icon {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            background: var(--blue-soft);
            color: var(--blue);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.2rem;
            transition: transform 0.25s ease;
        }

        .header-chip i,
        .step-icon i {
            line-height: 1;
            color: #FF5C1A;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 22px;
            color: var(--muted);
            line-height: 1.75;
            font-size: 1rem;
        }

        .faq-answer-inner p {
            margin: 0;
        }

        @media (max-width: 1100px) {
            .preview-center {
                padding: 38px 34px;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .reveal-ui {
                left: 50%;
            }
        }

        @media (max-width: 780px) {
            .container {
                width: min(100% - 24px, 1000px);
            }

            .hero {
                padding: 0 0 24px;
            }

            .hero-top-band {
                padding: 0 0 28px;
            }

            .hero-top {
                padding: 20px 0 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-search.simple.inside-button {
                max-width: 100%;
                gap: 8px;
                padding: 8px 10px 8px 14px;
                border-radius: 999px;
            }

            .search-block.single {
                gap: 10px;
            }

            .search-icon-box {
                width: 36px;
                height: 36px;
                font-size: 1.05rem;
            }

            .search-input-wrap input {
                font-size: 0.95rem;
            }

            .btn-search {
                height: 46px;
                min-width: 140px;
                padding: 0 18px;
                font-size: 0.92rem;
                border-radius: 999px;
            }

            .suggestions {
                left: 0;
                right: 0;
                top: calc(100% + 12px);
                border-radius: 24px;
            }

            .hero-map-wrap {
                padding-top: 16px;
                padding-bottom: 16px;
            }

            .preview-card {
                height: 58vw;
                min-height: 320px;
                max-height: 480px;
                border-radius: 20px;
            }

            .preview-center {
                height: 100%;
                min-height: unset;
                padding: 0;
            }

            .preview-center h2 {
                max-width: 240px;
                font-size: 2rem;
            }

            .reveal-ui {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .reveal-box {
                width: calc(100vw - 64px);
                max-width: 360px;
            }

            .boarding {
                right: 12px;
                left: 12px;
                width: auto;
                bottom: 12px;
            }

            .faq-question {
                padding: 18px 18px;
                font-size: 1rem;
            }

            .faq-answer-inner {
                padding: 0 18px 18px;
            }
        }

        @media (max-width: 700px) {
            .hero-search.simple.inside-button {
                padding: 8px 8px 8px 12px;
                gap: 8px;
            }
            .btn-search {
                min-width: 120px;
                padding: 0 14px;
            }
        }

        /* Sous 520px : layout vertical — input puis bouton pleine largeur */
        @media (max-width: 520px) {
            .hero-search.simple.inside-button {
                flex-direction: column;
                align-items: stretch;
                border-radius: 20px;
                padding: 14px 14px 10px;
                gap: 10px;
            }
            .search-block.single {
                gap: 10px;
            }
            .search-icon-box {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .search-input-wrap input {
                font-size: 0.97rem;
            }
            .clear-destination-btn {
                position: absolute;
                right: 12px;
                top: 30px;
                transform: translateY(-50%);
                width: 28px;
                height: 28px;
            }
            .search-input-wrap input {
                padding-right: 32px;
            }
            .btn-search {
                width: 100%;
                min-width: unset;
                height: 48px;
                padding: 0;
                font-size: 1rem;
                border-radius: 12px;
            }
        }


        /* Footer */

.site-footer {
    background: #1b1b1b;
    color: #ffffff;
    padding: 80px 0 24px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-col a {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    color: #cfcfcf;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a i{
    color: #fff;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.2s ease;
}

.footer-socials a:hover {
    background: #FF5C1A;
    transform: translateY(-2px);
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 26px;
}

.footer-legal-links a {
    color: #cfcfcf;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: 0.2s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-legal-copy {
    color: #cfcfcf;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal-copy {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col a {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-legal {
        align-items: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 12px 18px;
    }

    .footer-legal-copy {
        text-align: center;
    }

    .footer-legal-links a,
    .footer-legal-copy {
        font-size: 0.9rem;
    }
}


.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    transform: translateY(20px);
    transition: 0.25s;
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0);
}

.auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 1.2rem;
}

.auth-brand span {
    color: #FF5C1A;
    font-weight: 900;
    font-size: 1.6rem;
}

.auth-subtitle {
    color: #6b7280;
    margin-bottom: 20px;
}

.popup-ticket {
    font-family: inherit;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.ticket-header {
    background: #FF8A3D;
    color: white;
    font-size: 12px;
    padding: 8px;
    text-align: center;
    font-weight: 600;
}

.ticket-body {
    padding: 12px;
    text-align: center;
}

.ticket-city {
    font-size: 18px;
    font-weight: 700;
}

.ticket-country {
    font-size: 14px;
    color: #666;
}
.maplibregl-popup-content {
    padding: 0 !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.maplibregl-popup-close-button {
    font-size: 18px;
    color: #666;
    padding: 8px 10px;
}

.maplibregl-popup-close-button:hover {
    background: transparent;
    color: #111;
}

.popup-ticket {
    min-width: 220px;
    background: #fff;
    font-family: inherit;
}

.ticket-header {
    background: linear-gradient(135deg, #FF8A3D, #ffb36b);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px;
}

.ticket-body {
    padding: 16px;
    text-align: center;
}

.ticket-city {
    font-size: 22px;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1.1;
    margin-bottom: 4px;
}

.ticket-country {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.ticket-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border: none;
    border-radius: 12px;
    background: #000 !important;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.ticket-cta:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.ticket-cta:active {
    transform: translateY(0);
}

.profile-sidebar-link{
    font-size: 1rem;
}
