{% block nextSteps %}
    <h2 style="color: #333; font-size: 18px; margin-bottom: 15px;">What Happens Next</h2>

    {% set status = reservation.status %}

    <p style="font-size: 16px; font-weight: bold; margin-bottom: 10px;
            color: {% if status == 'CONFIRMED' %}#28a745{% elseif status == 'WAITING_PAYMENT' or status == 'OVERDUE' %}#ffc107{% elseif status == 'CANCELLED' %}#dc3545{% else %}#6c757d{% endif %};">

        {% if status == 'WAITING_CONFIRMATION' %}
            ⏳ AWAITING CONFIRMATION
        {% elseif status == 'WAITING_PAYMENT' %}
            💳 PAYMENT REQUIRED
        {% elseif status == 'OVERDUE' %}
            ⚠️ URGENT: PAYMENT OVERDUE
        {% elseif status == 'CONFIRMED' %}
            ✅ ALL SET - YOU ARE CONFIRMED!
        {% elseif status == 'CANCELLED' %}
            ❌ RESERVATION CANCELLED
        {% else %}
            ❓ STATUS UNKNOWN
        {% endif %}
    </p>

    <p style="color: #51545E; font-size: 15px; line-height: 1.625; margin-bottom: 20px;">
        {% if status == 'WAITING_CONFIRMATION' %}
            Your reservation has been received and is currently awaiting confirmation from our team. You will receive an email update once it is approved.
            <br><br>
            <strong>Expected response time: 24-48 hours</strong>

        {% elseif status == 'WAITING_PAYMENT' %}
            Your reservation is ready but requires payment to be confirmed. Please complete your payment using the instructions provided above.
            <br><br>
            <strong>Do not forget: Payment deadline is critical!</strong>

        {% elseif status == 'OVERDUE' %}
            CRITICAL: The payment deadline has passed. Your reservation is at high risk of automatic cancellation. Please contact us immediately if you still wish to proceed.
            <br><br>
            <strong>Contact us NOW to save your booking!</strong>

        {% elseif status == 'CONFIRMED' %}
            Excellent! Your reservation is fully confirmed and secured. We look forward to welcoming you! You can now focus on planning your stay.
            <br><br>
            <strong>Save our contact details for your trip</strong>

        {% elseif status == 'CANCELLED' %}
            Your reservation has been cancelled. Please refer to the cancellation policy above for details about any applicable penalties or refunds.
            <br><br>
            <strong>Questions? Contact our support team</strong>

        {% else %}
            There seems to be an issue with determining your reservation status. Please contact our support team immediately for assistance.
            <br><br>
            <strong>Contact support for immediate help</strong>
        {% endif %}
    </p>

    <!-- Separator -->
    <hr style="border: none; border-top: 1px solid #EAEAEC; margin: 30px 0;" />
{% endblock %}
