.success-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.check-icon {
    width: 80px;
    height: 80px;
    background: #10b981; /* Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

h1 { color: #1f2937; margin-bottom: 10px; }

.subtitle { color: #6b7280; font-size: 1.1rem; margin-bottom: 30px; }

.info-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: #6366f1;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-primary:hover { background: #4f46e5; transform: translateY(-2px); }

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .booking-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .booking-info {
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .booking-info .package-card div {
        font-size: 2.5rem !important; 
    }
    .booking-info h3 {
        font-size: 1.5rem !important;
    }

    .booking-form-wrapper {
        width: 100% !important;
        box-sizing: border-box;
        padding-bottom: 80px !important; 
    }
}