/* ==========================================
   BOOKING JOURNEY
========================================== */

.booking-journey{

    padding:120px 0;

    background:
    linear-gradient(
    90deg,
    #EAF5FF 0%,
    #F8F3E5 45%,
    #FFE9B5 100%
    );

}

.booking-journey h2{

    color:var(--primary);

    font-size:56px;

    font-weight:800;

    margin-bottom:20px;

}

.booking-journey .section-description{

    max-width:700px;

    margin:0 auto 60px;

    color:var(--text-secondary);

    line-height:1.8;

}

.journey-card{

    background:var(--surface);

    border-radius:32px;

    padding:40px 30px;

    height:100%;

    text-align:center;

    box-shadow:var(--shadow-md);

    transition:all .35s ease;

}

.journey-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.journey-number{

    width:72px;

    height:72px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:var(--cream);

    font-size:22px;

    font-weight:700;

    box-shadow:var(--shadow-sm);

}

.journey-card h4{

    color:var(--primary);

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

}

.journey-card p{

    color:var(--text-secondary);

    line-height:1.8;

    margin:0;

}