/* =========================
   BOOKING START
   ========================= */

.booking-start {
    padding: 140px 1rem;
}

    .booking-start .title {
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .booking-start .subtitle {
        font-size: 1.1rem;
        opacity: 0.7;
        margin-bottom: 3rem;
    }

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 420px));
    justify-content: center;
    gap: 40px;
}

.choice-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 18px;
    padding: 60px 30px;
    text-decoration: none;
    color: white;
    transition: 0.25s ease;
    display: block;
}

    .choice-card:hover {
        transform: translateY(-6px);
        border-color: white;
    }

    .choice-card h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .choice-card p {
        opacity: 0.7;
        font-size: 1rem;
    }

.icon {
    margin-bottom: 18px;
}

    .icon svg {
        width: 44px;
        height: 44px;
        opacity: 0.9;
        transition: 0.2s ease;
    }

.choice-card:hover .icon svg {
    transform: scale(1.1);
}
