/* ============================================
   Close CTA — full-bleed photo (global)
   ============================================ */
.voyage-close {
    position: relative;
    min-height: 70svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 40px);
}

.voyage-close__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.voyage-close__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 26, 46, 0.92) 0%, rgba(6, 26, 46, 0.7) 50%, rgba(225, 94, 4, 0.45) 100%);
}

.voyage-close__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.voyage-close__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(22px, 3vw, 30px);
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 28px rgba(26, 159, 217, 0.35);
}

.voyage-close__badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.voyage-close__content h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 auto 18px;
    max-width: 20ch;
}

.voyage-close__desc {
    margin: 0 auto 32px;
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.7;
}

.voyage-close__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 22px;
}

.voyage-close__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--highlight), #c44f03);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 36px rgba(225, 94, 4, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voyage-close__btn:hover {
    color: #fff;
    box-shadow: 0 18px 42px rgba(225, 94, 4, 0.5);
}

.voyage-close__btn > svg {
    width: 16px;
    height: 16px;
}

.voyage-close__aside {
    margin: 0;
    max-width: 28ch;
    text-align: left;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .voyage-close__aside {
        text-align: center;
        max-width: 34ch;
    }
}
